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))
ans =
1×3 cell array
{1×3 double} {1×2 double} {1×3 double}
|
2 | Pass |
in = {[1 1],[1 -1]};
out_correct = {[1 1]};
assert(isequal(find_stable(in),out_correct))
ans =
1×1 cell array
{1×2 double}
|
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))
ans =
1×2 cell array
{1×3 double} {1×3 double}
|
Project Euler: Problem 10, Sum of Primes
707 Solvers
Back to basics 6 - Column Vector
908 Solvers
Rotate input square matrix 90 degrees CCW without rot90
380 Solvers
321 Solvers
641 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!