Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a = [5 3 6 4 7 7 3 5 9];
b_correct = [5 3 6 4 7 9];
assert(isequal(dedupe(a),b_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 dedupe (line 2)
In ScoringEngineTestPoint1 (line 3)
In solutionTest (line 3)]
|
2 | Pass |
a = [1 0 0 0 1 1 1 1 0 0 1 2 2 0 1]
b_correct = [1 0 2];
assert(isequal(dedupe(a),b_correct));
a =
1 0 0 0 1 1 1 1 0 0 1 2 2 0 1
[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 dedupe (line 2)
In ScoringEngineTestPoint2 (line 3)
In solutionTest (line 5)]
|
3 | Pass |
a = [-1 -1 -1 -1 -1 -1];
b_correct = [-1];
assert(isequal(dedupe(a),b_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 dedupe (line 2)
In ScoringEngineTestPoint3 (line 3)
In solutionTest (line 7)]
|
Replace NaNs with the number that appears to its left in the row.
2018 Solvers
Back to basics 22 - Rotate a matrix
763 Solvers
309 Solvers
394 Solvers
Simple equation: Annual salary
3779 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!