Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 3;
y_correct = 15;
assert(isequal(magic_sum(n),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 magic_sum (line 2)
In ScoringEngineTestPoint1 (line 3)
In solutionTest (line 3)]
|
2 | Pass |
n = 5;
y_correct = 65;
assert(isequal(magic_sum(n),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 magic_sum (line 2)
In ScoringEngineTestPoint2 (line 3)
In solutionTest (line 5)]
|
3 | Pass |
n = 7;
y_correct = 175;
assert(isequal(magic_sum(n),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 magic_sum (line 2)
In ScoringEngineTestPoint3 (line 3)
In solutionTest (line 7)]
|
4 | Pass |
n = 8;
y_correct = 260;
assert(isequal(magic_sum(n),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 magic_sum (line 2)
In ScoringEngineTestPoint4 (line 3)
In solutionTest (line 9)]
|
5 | Pass |
n = 20;
y_correct = 4010;
assert(isequal(magic_sum(n),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 magic_sum (line 2)
In ScoringEngineTestPoint5 (line 3)
In solutionTest (line 11)]
|
6 | Pass |
n = 100;
y_correct = 500050;
assert(isequal(magic_sum(n),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 magic_sum (line 2)
In ScoringEngineTestPoint6 (line 3)
In solutionTest (line 13)]
|
7 | Pass |
n = 200;
y_correct = 4000100;
assert(isequal(magic_sum(n),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 magic_sum (line 2)
In ScoringEngineTestPoint7 (line 3)
In solutionTest (line 15)]
|
8 | Pass |
n = 1000;
y_correct = 500000500;
assert(isequal(magic_sum(n),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 magic_sum (line 2)
In ScoringEngineTestPoint8 (line 3)
In solutionTest (line 17)]
|
Return the largest number that is adjacent to a zero
3106 Solvers
Replace NaNs with the number that appears to its left in the row.
1710 Solvers
Remove the two elements next to NaN value
309 Solvers
178 Solvers
193 Solvers