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
|
1398 Solvers
Test if a Number is a Palindrome without using any String Operations
181 Solvers
386 Solvers
163 Solvers
Is this triangle right-angled?
2874 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!