Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
n = 4;
d = 2;
%p = isprime(spiral(n));imagesc(p)
assert(isequal(prime_spiral(n),d))
|
2 | Pass |
%%
n = 7;
d = 4;
assert(isequal(prime_spiral(n),d))
|
3 | Pass |
%%
n = 13;
d = 5;
assert(isequal(prime_spiral(n),d))
|
4 | Pass |
%%
n = 52;
d = 6;
assert(isequal(prime_spiral(n),d))
|
5 | Pass |
%%
n = 81;
d = 9;
assert(isequal(prime_spiral(n),d))
|
835 Solvers
Given an unsigned integer x, find the largest y by rearranging the bits in x
781 Solvers
173 Solvers
Find the dimensions of a matrix
373 Solvers
664 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!