Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 100;
y_correct = 0;
assert(isequal(last_digit(x),y_correct))
a =
'100'
y =
0
|
2 | Pass |
x = 103;
y_correct = 3;
assert(isequal(last_digit(x),y_correct))
a =
'103'
y =
3
|
3 | Pass |
x = 55958;
y_correct = 8;
assert(isequal(last_digit(x),y_correct))
a =
'55958'
y =
8
|
4 | Pass |
x = 6165451646465;
y_correct = 5;
assert(isequal(last_digit(x),y_correct))
a =
'6165451646465'
y =
5
|
Find common elements in matrix rows
1231 Solvers
351 Solvers
420 Solvers
07 - Common functions and indexing 1
338 Solvers
664 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!