Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 100;
y_correct = 0;
assert(isequal(last_digit(x),y_correct))
|
2 | Pass |
x = 103;
y_correct = 3;
assert(isequal(last_digit(x),y_correct))
|
3 | Pass |
x = 55958;
y_correct = 8;
assert(isequal(last_digit(x),y_correct))
|
4 | Pass |
x = 6165451646465;
y_correct = 5;
assert(isequal(last_digit(x),y_correct))
|
1900 Solvers
Arrange vector in ascending order
624 Solvers
Given a 4x4 matrix, swap the two middle columns
516 Solvers
Convert given decimal number to binary number.
636 Solvers
111 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!