Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 1;
c_correct = 1;
assert(isequal(collatz(n),c_correct))
a =
1
|
2 | Pass |
n = 2;
c_correct = [2 1];
assert(isequal(collatz(n),c_correct))
a =
2
c =
2 1
|
3 | Pass |
n = 5;
c_correct = [5 16 8 4 2 1];
assert(isequal(collatz(n),c_correct))
a =
5
a =
16
c =
5 16
c =
5 16 8
c =
5 16 8 4
c =
5 16 8 4 2
c =
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))
a =
22
c =
22 11
a =
34
c =
22 11 34
c =
22 11 34 17
a =
52
c =
22 11 34 17 52
c =
22 11 34 17 52 26
c =
22 11 34 17 52 26 13
a =
40
c =
22 11 34 17 52 26 13 40
c =
22 11 34 17 52 26 13 40 20
c =
22 11 34 17 52 26 13 40 20 10
c =
22 11 34 17 52 26 13 40 20 10 5
a =
16
c =
22 11 34 17 52 26 13 40 20 10 5 16
c =
22 11 34 17 52 26 13 40 20 10 5 16 8
c =
22 11 34 17 52 26 13 40 20 10 5 16 8 4
c =
22 11 34 17 52 26 13 40 20 10 5 16 8 4 2
c =
22 11 34 17 52 26 13 40 20 10 5 16 8 4 2 1
|
9868 Solvers
Extract leading non-zero digit
1205 Solvers
Find state names that end with the letter A
708 Solvers
Replace NaNs with the number that appears to its left in the row.
2018 Solvers
Get the area codes from a list of phone numbers
532 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!