Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
y_correct = 0;
assert(isequal(Recaman(x),y_correct))
|
2 | Pass |
x = 5;
y_correct = [0 1 3 6 2];
assert(isequal(Recaman(x),y_correct))
|
3 | Pass |
x = 8;
y_correct = [0 1 3 6 2 7 13 20];
assert(isequal(Recaman(x),y_correct))
|
4 | Pass |
x = 10;
y_correct = [0 1 3 6 2 7 13 20 12 21];
assert(isequal(Recaman(x),y_correct))
|
5 | Pass |
x = 5e4;
y = Recaman(x);
assert(isequal(length(Recaman(x)),x))
assert(isequal(y(954),739))
assert(isequal(y(7589),17654))
assert(isequal(y(12345),18554))
|
6 | Pass |
x = 1e5;
y = Recaman(x);
assert(isequal(length(Recaman(x)),x))
assert(isequal(y(1e4),8658))
assert(isequal(y(2e4),34358))
assert(isequal(y(3e4),92474))
assert(isequal(y(4e4),102344))
|
831 Solvers
2816 Solvers
Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
298 Solvers
234 Solvers
226 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!