Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
in = {[1 2 1],[1 -1],[1 1],[1 53 6]};
out_correct = {[1 2 1],[1 1],[1 53 6]};
assert(isequal(find_stable(in),out_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 find_stable (line 2)
In ScoringEngineTestPoint1 (line 3)
In solutionTest (line 3)]
|
2 | Pass |
in = {[1 1],[1 -1]};
out_correct = {[1 1]};
assert(isequal(find_stable(in),out_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 find_stable (line 2)
In ScoringEngineTestPoint2 (line 3)
In solutionTest (line 5)]
|
3 | Pass |
in = {[1 0 1],[2 -5 2],[2 5 2]};
out_correct = {[1 0 1],[2 5 2]};
assert(isequal(find_stable(in),out_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 find_stable (line 2)
In ScoringEngineTestPoint3 (line 3)
In solutionTest (line 7)]
|
2486 Solvers
Increment a number, given its digits
562 Solvers
1763 Solvers
Determine the number of odd integers in a vector
435 Solvers
379 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!