Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
n = 4;
d = 2;
%p = isprime(spiral(n));imagesc(p)
assert(isequal(prime_spiral(n),d))
d =
2
|
2 | Pass |
%%
n = 7;
d = 4;
assert(isequal(prime_spiral(n),d))
d =
4
|
3 | Pass |
%%
n = 13;
d = 5;
assert(isequal(prime_spiral(n),d))
d =
5
|
4 | Pass |
%%
n = 52;
d = 6;
assert(isequal(prime_spiral(n),d))
d =
6
|
5 | Pass |
%%
n = 81;
d = 9;
assert(isequal(prime_spiral(n),d))
d =
9
|
First non-zero element in each column
593 Solvers
Back to basics 3 - Temp Directory
328 Solvers
Remove white space from the string
168 Solvers
Matrix with different incremental runs
249 Solvers
531 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!