This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Nice 'for'! Sometimes I simply forget to use that!
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 12345678
out = {[1 2 3 4 5 6 7 8]}
assert(isequal(numbersRip(x),out))
x =
12345678
out =
[1x8 double]
|
2 | Pass |
%%
x = [1 23 53 1 88]
out = {[1 2 3 5 3 1 8 8]}
assert(isequal(numbersRip(x),out))
x =
1 23 53 1 88
out =
[1x8 double]
|
3 | Pass |
%%
x = [213 102 9 12;
11 323 34 22];
out = {[2 1 3 1 0 2 9 1 2];
[1 1 3 2 3 3 4 2 2]};
assert(isequal(numbersRip(x),out))
|
4 | Pass |
%%
x = [120395;
2]
out = {[1 2 0 3 9 5];
[2]}
assert(isequal(numbersRip(x),out))
x =
120395
2
out =
[1x6 double]
[ 2]
|
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!