Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
y_correct = 1;
assert(isequal(reverseDigits(x),y_correct))
|
2 | Fail |
x = 10;
y_correct = 1;
assert(isequal(reverseDigits(x),y_correct))
|
3 | Fail |
x = 675;
y_correct = 576;
assert(isequal(reverseDigits(x),y_correct))
|
Arrange Vector in descending order
4075 Solvers
Back to basics 19 - character types
225 Solvers
Generate N equally spaced intervals between -L and L
563 Solvers
Find out missing number from a vector of 9 elements
245 Solvers
369 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!