Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [2,3,4;4,5,6];
y_correct = 4;
assert(isequal(matrix_median(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 matrix_median (line 2)
In ScoringEngineTestPoint1 (line 3)
In solutionTest (line 3)]
|
2 | Pass |
x = int8(1:4);
y_correct = 3;
assert(isequal(matrix_median(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 matrix_median (line 2)
In ScoringEngineTestPoint2 (line 3)
In solutionTest (line 5)]
|
3 | Pass |
x = [2 6 8 10 NaN 14 NaN 18 NaN];
y_correct = 9;
assert(isequal(matrix_median(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 matrix_median (line 2)
In ScoringEngineTestPoint3 (line 3)
In solutionTest (line 7)]
|
631 Solvers
181 Solvers
202 Solvers
373 Solvers
Basics: counting digits of a number irrespective of the sign
23 Solvers