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))
|
2 | Pass |
%%
in = {[1 1],[1 -1]};
out_correct = {[1 1]};
assert(isequal(find_stable(in),out_correct))
|
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))
|
Find the peak 3n+1 sequence value
1107 Solvers
Back to basics 9 - Indexed References
392 Solvers
Back to basics 17 - white space
245 Solvers
Test if two numbers have the same digits
187 Solvers
321 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!