Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
n = 1;
c_correct = 1;
assert(isequal(collatz(n),c_correct))
i =
1
c =
1
|
2 | Pass |
%%
n = 2;
c_correct = [2 1];
assert(isequal(collatz(n),c_correct))
i =
1
c =
2
c =
2 1
i =
2
|
3 | Pass |
%%
n = 5;
c_correct = [5 16 8 4 2 1];
assert(isequal(collatz(n),c_correct))
i =
1
c =
5
c =
5 16
i =
2
c =
5 16 8
i =
3
c =
5 16 8 4
i =
4
c =
5 16 8 4 2
i =
5
c =
5 16 8 4 2 1
i =
6
|
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))
i =
1
c =
22
c =
22 11
i =
2
c =
22 11 34
i =
3
c =
22 11 34 17
i =
4
c =
22 11 34 17 52
i =
5
c =
22 11 34 17 52 26
i =
6
c =
22 11 34 17 52 26 13
i =
7
c =
22 11 34 17 52 26 13 40
i =
8
c =
22 11 34 17 52 26 13 40 20
i =
9
c =
22 11 34 17 52 26 13 40 20 10
i =
10
c =
22 11 34 17 52 26 13 40 20 10 5
i =
11
c =
22 11 34 17 52 26 13 40 20 10 5 16
i =
12
c =
22 11 34 17 52 26 13 40 20 10 5 16 8
i =
13
c =
22 11 34 17 52 26 13 40 20 10 5 16 8 4
i =
14
c =
22 11 34 17 52 26 13 40 20 10 5 16 8 4 2
i =
15
c =
22 11 34 17 52 26 13 40 20 10 5 16 8 4 2 1
i =
16
|
Make a run-length companion vector
512 Solvers
Check if number exists in vector
4465 Solvers
Find nearest prime number less than input number
268 Solvers
Basics: 'Find the eigenvalues of given matrix
322 Solvers
2770 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!