This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
N = 2;
y_correct=[4 3; 1 2];
assert(isequal(Ulam(N),y_correct))
|
2 | Pass |
%%
N = 3;
y_correct=[5 4 3; 6 1 2; 7 8 9];
assert(isequal(Ulam(N),y_correct))
|
3 | Pass |
%%
N = 4;
y_correct=[16 15 14 13; 5 4 3 12; 6 1 2 11; 7 8 9 10];
assert(isequal(Ulam(N),y_correct))
|
4 | Pass |
%%
N = 5;
y_correct=[17 16 15 14 13; 18 5 4 3 12; 19 6 1 2 11; 20 7 8 9 10; 21 22 23 24 25];
assert(isequal(Ulam(N),y_correct))
|
3377 Solvers
Back to basics 12 - Input Arguments
525 Solvers
314 Solvers
377 Solvers
Integer Sequence - II : New Fibonacci
252 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!