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
n =
1
c =
2 1
|
3 | Pass |
%%
n = 5;
c_correct = [5 16 8 4 2 1];
assert(isequal(collatz(n),c_correct))
c =
5
n =
16
c =
5 16
n =
8
c =
5 16 8
n =
4
c =
5 16 8 4
n =
2
c =
5 16 8 4 2
n =
1
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
n =
11
c =
22 11
n =
34
c =
22 11 34
n =
17
c =
22 11 34 17
n =
52
c =
22 11 34 17 52
n =
26
c =
22 11 34 17 52 26
n =
13
c =
22 11 34 17 52 26 13
n =
40
c =
22 11 34 17 52 26 13 40
n =
20
c =
22 11 34 17 52 26 13 40 20
n =
10
c =
22 11 34 17 52 26 13 40 20 10
n =
5
c =
Columns 1 through 10
22 11 34 17 52 26 13 40 20 10
Column 11
5
n =
16
c =
Columns 1 through 10
22 11 34 17 52 26 13 40 20 10
Columns 11 through 12
5 16
n =
8
c =
Columns 1 through 10
22 11 34 17 52 26 13 40 20 10
Columns 11 through 13
5 16 8
n =
4
c =
Columns 1 through 10
22 11 34 17 52 26 13 40 20 10
Columns 11 through 14
5 16 8 4
n =
2
c =
Columns 1 through 10
22 11 34 17 52 26 13 40 20 10
Columns 11 through 15
5 16 8 4 2
n =
1
c =
Columns 1 through 10
22 11 34 17 52 26 13 40 20 10
Columns 11 through 16
5 16 8 4 2 1
|
Flip the main diagonal of a matrix
506 Solvers
725 Solvers
Find nearest prime number less than input number
269 Solvers
Cell Counting: How Many Draws?
581 Solvers
323 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!