How to reduce it's size?
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
n = 1;
c_correct = 1;
assert(isequal(collatz(n),c_correct))
c =
1
|
2 | Pass |
%%
n = 2;
c_correct = [2 1];
assert(isequal(collatz(n),c_correct))
c =
2 1
|
3 | Pass |
%%
n = 5;
c_correct = [5 16 8 4 2 1];
assert(isequal(collatz(n),c_correct))
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))
c =
22 11 34 17 52 26 13 40 20 10 5 16 8 4 2 1
|
Remove the small words from a list of words.
672 Solvers
Implement simple rotation cypher
943 Solvers
Find nearest prime number less than input number
269 Solvers
Find the dimensions of a matrix
373 Solvers
445 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!