Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
n = 1;
c_correct = 1;
assert(isequal(collatz(n),c_correct))
|
2 | Fail |
n = 2;
c_correct = [2 1];
assert(isequal(collatz(n),c_correct))
|
3 | Fail |
n = 5;
c_correct = [5 16 8 4 2 1];
assert(isequal(collatz(n),c_correct))
|
4 | Fail |
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))
|
How to find the position of an element in a vector without using the find function
2323 Solvers
466 Solvers
middleAsColumn: Return all but first and last element as a column vector
317 Solvers
find the maximum element of the matrix
254 Solvers
361 Solvers