This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = magic(3);
y_correct = true;
assert(isequal(magical(x),y_correct))
ans =
1
|
2 | Pass |
%%
x = magic(7);
y_correct = true;
assert(isequal(magical(x),y_correct))
ans =
1
|
3 | Pass |
%%
x = eye(7);
y_correct = false;
assert(isequal(magical(x),y_correct))
ans =
0
|
4 | Pass |
%%
x = magic(2);
y_correct = false;
assert(isequal(magical(x),y_correct))
ans =
0
|
5 | Pass |
%%
x = magic(3)+1;
y_correct = false;
assert(isequal(magical(x),y_correct))
ans =
0
|
6 | Pass |
%%
x = flipud(magic(9));
y_correct = true;
assert(isequal(magical(x),y_correct))
ans =
1
|
7 | Pass |
%%
x = fliplr(magic(11));
y_correct = true;
assert(isequal(magical(x),y_correct))
ans =
1
|
8 | Pass |
%%
x = magic(4);
y_correct = true;
assert(isequal(magical(x),y_correct))
ans =
1
|
9 | Pass |
%%
x = flipud(magic(8));
y_correct = true;
assert(isequal(magical(x),y_correct))
ans =
1
|
10 | Pass |
%%
x = [1 2; 3 4];
y_correct = false;
assert(isequal(magical(x),y_correct))
ans =
0
|
11 | Pass |
%%
x = [1 2 3; 4 5 6];
y_correct = false;
assert(isequal(magical(x),y_correct))
ans =
0
|
12 | Pass |
%%
x = ones(2);
y_correct = false;
assert(isequal(magical(x),y_correct))
ans =
0
|
13 | Pass |
%%
x = [7 1 6; 3 5 7; 4 9 3];
y_correct = false;
assert(isequal(magical(x),y_correct))
ans =
0
|
193 Solvers
Getting the indices from a matrice
266 Solvers
198 Solvers
373 Solvers
250 Solvers