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))
|
Sort a list of complex numbers based on far they are from the origin.
4327 Solvers
241 Solvers
Determine if input is divisible by three.
162 Solvers
157 Solvers
124 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!