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))
|
5168 Solvers
401 Solvers
"Low : High - Low : High - Turn around " -- Create a subindices vector
262 Solvers
Split a string into chunks of specified length
168 Solvers
Celsius to Fahrenheit converter
280 Solvers