This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = magic(3);
y_correct = true;
assert(isequal(magical(x),y_correct))
|
2 | Pass |
%%
x = magic(7);
y_correct = true;
assert(isequal(magical(x),y_correct))
|
3 | Pass |
%%
x = eye(7);
y_correct = false;
assert(isequal(magical(x),y_correct))
|
4 | Pass |
%%
x = magic(2);
y_correct = false;
assert(isequal(magical(x),y_correct))
|
5 | Pass |
%%
x = magic(3)+1;
y_correct = false;
assert(isequal(magical(x),y_correct))
|
6 | Pass |
%%
x = flipud(magic(9));
y_correct = true;
assert(isequal(magical(x),y_correct))
|
7 | Pass |
%%
x = fliplr(magic(11));
y_correct = true;
assert(isequal(magical(x),y_correct))
|
54255 Solvers
1143 Solvers
What is the distance from point P(x,y) to the line Ax + By + C = 0?
277 Solvers
Back to basics 25 - Valid variable names
293 Solvers
462 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!