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))
|
Back to basics 12 - Input Arguments
525 Solvers
Generate N equally spaced intervals between -L and L
563 Solvers
Basics: 'Find the eigenvalues of given matrix
323 Solvers
Create a Multiplication table matrix...
283 Solvers
Tick. Tock. Tick. Tock. Tick. Tock. Tick. Tock. Tick. Tock.
761 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!