Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 1;
c_correct = 1;
assert(isequal(collatz(n),c_correct))
|
2 | Pass |
n = 2;
c_correct = [2 1];
assert(isequal(collatz(n),c_correct))
y =
2 1
|
3 | Pass |
n = 5;
c_correct = [5 16 8 4 2 1];
assert(isequal(collatz(n),c_correct))
y =
5 16
y =
5 16 8
y =
5 16 8 4
y =
5 16 8 4 2
y =
5 16 8 4 2 1
|
4 | Pass |
n = 22;
c_correct = [22 11 34 17 52 26 13 40 20 10 5 16 8 4 2 1];
assert(isequal(collatz(n),c_correct))
y =
22 11
y =
22 11 34
y =
22 11 34 17
y =
22 11 34 17 52
y =
22 11 34 17 52 26
y =
22 11 34 17 52 26 13
y =
22 11 34 17 52 26 13 40
y =
22 11 34 17 52 26 13 40 20
y =
22 11 34 17 52 26 13 40 20 10
y =
22 11 34 17 52 26 13 40 20 10 5
y =
22 11 34 17 52 26 13 40 20 10 5 16
y =
22 11 34 17 52 26 13 40 20 10 5 16 8
y =
22 11 34 17 52 26 13 40 20 10 5 16 8 4
y =
22 11 34 17 52 26 13 40 20 10 5 16 8 4 2
y =
22 11 34 17 52 26 13 40 20 10 5 16 8 4 2 1
|
Replace NaNs with the number that appears to its left in the row.
2018 Solvers
1882 Solvers
Determine Whether an array is empty
646 Solvers
249 Solvers
429 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!