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 |
x = 3;
y_correct = 25;
assert(isequal(spiral_nb(x),y_correct))
|
2 | Pass |
x = 5;
y_correct = 101;
assert(isequal(spiral_nb(x),y_correct))
|
3 | Pass |
x = 9;
y_correct = 537;
assert(isequal(spiral_nb(x),y_correct))
|
4 | Pass |
x = 501;
y_correct = 83960501;
assert(isequal(spiral_nb(x),y_correct))
|
5 | Pass |
x = 5001;
y_correct = 83395855001;
assert(isequal(spiral_nb(x),y_correct))
|
6 | Pass |
x = 10001;
y_correct = 666916710001;
assert(isequal(spiral_nb(x),y_correct))
|
7 | Pass |
x = 10003;
y_correct = 667316890025;
assert(isequal(spiral_nb(x),y_correct))
|
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!