Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
n = 4;
d = 2;
%p = isprime(spiral(n));imagesc(p)
assert(isequal(prime_spiral(n),d))
ii =
2
|
2 | Pass |
%%
n = 7;
d = 4;
assert(isequal(prime_spiral(n),d))
ii =
4
|
3 | Pass |
%%
n = 13;
d = 5;
assert(isequal(prime_spiral(n),d))
ii =
5
|
4 | Pass |
%%
n = 52;
d = 6;
assert(isequal(prime_spiral(n),d))
ii =
6
|
5 | Pass |
%%
n = 81;
d = 9;
assert(isequal(prime_spiral(n),d))
ii =
9
|
6064 Solvers
Find the two most distant points
1628 Solvers
Find nearest prime number less than input number
268 Solvers
349 Solvers
2455 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!