x = magic(2);
y_correct = false;
This is wrong!!!! hence solution failed
Although MATLAB does create a 2x2 matrix as an output from magic(2), that output is not a magic square.
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 | Fail |
%%
x = magic(2);
y_correct = false;
assert(isequal(magical(x),y_correct))
Error: Assertion failed.
|
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))
|
8 | Pass |
%%
x = magic(4);
y_correct = true;
assert(isequal(magical(x),y_correct))
|
9 | Pass |
%%
x = flipud(magic(8));
y_correct = true;
assert(isequal(magical(x),y_correct))
|
10 | Pass |
%%
x = [1 2; 3 4];
y_correct = false;
assert(isequal(magical(x),y_correct))
|
11 | Pass |
%%
x = [1 2 3; 4 5 6];
y_correct = false;
assert(isequal(magical(x),y_correct))
|
12 | Pass |
%%
x = ones(2);
y_correct = false;
assert(isequal(magical(x),y_correct))
|
13 | Pass |
%%
x = [7 1 6; 3 5 7; 4 9 3];
y_correct = false;
assert(isequal(magical(x),y_correct))
|
17475 Solvers
Replace NaNs with the number that appears to its left in the row.
2018 Solvers
Determine if a Given Number is a Triangle Number
322 Solvers
Fahrenheit to Celsius converter
358 Solvers
Try 1.5.4: Celsius to Fahrenheit
609 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!