Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = magic(3);
y_correct = true;
assert(isequal(magical(x),y_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In magical (line 2)
In ScoringEngineTestPoint1 (line 3)
In solutionTest (line 3)]
|
2 | Pass |
x = magic(7);
y_correct = true;
assert(isequal(magical(x),y_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In magical (line 2)
In ScoringEngineTestPoint2 (line 3)
In solutionTest (line 5)]
|
3 | Pass |
x = eye(7);
y_correct = false;
assert(isequal(magical(x),y_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In magical (line 2)
In ScoringEngineTestPoint3 (line 3)
In solutionTest (line 7)]
|
4 | Pass |
x = magic(2);
y_correct = false;
assert(isequal(magical(x),y_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In magical (line 2)
In ScoringEngineTestPoint4 (line 3)
In solutionTest (line 9)]
|
5 | Pass |
x = magic(3)+1;
y_correct = false;
assert(isequal(magical(x),y_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In magical (line 2)
In ScoringEngineTestPoint5 (line 3)
In solutionTest (line 11)]
|
6 | Pass |
x = flipud(magic(9));
y_correct = true;
assert(isequal(magical(x),y_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In magical (line 2)
In ScoringEngineTestPoint6 (line 3)
In solutionTest (line 13)]
|
7 | Pass |
x = fliplr(magic(11));
y_correct = true;
assert(isequal(magical(x),y_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In magical (line 2)
In ScoringEngineTestPoint7 (line 3)
In solutionTest (line 15)]
|
8 | Pass |
x = magic(4);
y_correct = true;
assert(isequal(magical(x),y_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In magical (line 2)
In ScoringEngineTestPoint8 (line 3)
In solutionTest (line 17)]
|
9 | Pass |
x = flipud(magic(8));
y_correct = true;
assert(isequal(magical(x),y_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In magical (line 2)
In ScoringEngineTestPoint9 (line 3)
In solutionTest (line 19)]
|
10 | Pass |
x = [1 2; 3 4];
y_correct = false;
assert(isequal(magical(x),y_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In magical (line 2)
In ScoringEngineTestPoint10 (line 3)
In solutionTest (line 21)]
|
11 | Pass |
x = [1 2 3; 4 5 6];
y_correct = false;
assert(isequal(magical(x),y_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In magical (line 2)
In ScoringEngineTestPoint11 (line 3)
In solutionTest (line 23)]
|
12 | Pass |
x = ones(2);
y_correct = false;
assert(isequal(magical(x),y_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In magical (line 2)
In ScoringEngineTestPoint12 (line 3)
In solutionTest (line 25)]
|
13 | Pass |
x = [7 1 6; 3 5 7; 4 9 3];
y_correct = false;
assert(isequal(magical(x),y_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In magical (line 2)
In ScoringEngineTestPoint13 (line 3)
In solutionTest (line 27)]
|
2486 Solvers
Given two strings, find the maximum overlap
461 Solvers
1309 Solvers
289 Solvers
464 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!