Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 123;
x_correct = [1 2 3];
assert(isequal(int2vec(x),x_correct))
x_vec =
1 2 3
|
2 | Pass |
x = 56409;
x_correct = [5 6 4 0 9];
assert(isequal(int2vec(x),x_correct))
x_vec =
5 6 4 0 9
|
3 | Pass |
x = 1000;
x_correct = [1 0 0 0];
assert(isequal(int2vec(x),x_correct))
x_vec =
1 0 0 0
|
54255 Solvers
Extract leading non-zero digit
1205 Solvers
399 Solvers
188 Solvers
Sum the numbers on the main diagonal
453 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!