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))
polyOut =
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))
polyOut =
cell
[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))
polyOut =
1×2 cell array
[1×3 double] [1×3 double]
|
Project Euler: Problem 7, Nth prime
521 Solvers
401 Solvers
329 Solvers
Vectorize the digits of an Integer
269 Solvers
492 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!