Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 100;
y_correct = 0;
assert(isequal(last_digit(x),y_correct))
y =
0
|
2 | Pass |
x = 103;
y_correct = 3;
assert(isequal(last_digit(x),y_correct))
y =
3
|
3 | Pass |
x = 55958;
y_correct = 8;
assert(isequal(last_digit(x),y_correct))
y =
8
|
4 | Pass |
x = 6165451646465;
y_correct = 5;
assert(isequal(last_digit(x),y_correct))
y =
5
|
Find the sum of the elements in the "second" diagonal
994 Solvers
Back to basics 6 - Column Vector
908 Solvers
420 Solvers
480 Solvers
07 - Common functions and indexing 4
319 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!