Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
base = 3; expo = 8; n = 2;
y_correct = 61;
assert(isequal(lastndigit(base,expo,n),y_correct))
|
2 | Pass |
%%
base = 7; expo = 12; n = 5;
y_correct = 87201;
assert(isequal(lastndigit(base,expo,n),y_correct))
|
3 | Pass |
%%
base = 25; expo = 71; n = 15;
y_correct = 896881103515625;
assert(isequal(lastndigit(base,expo,n),y_correct))
|
4 | Pass |
%%
base = 768; expo = 1579; n = 22;
y_correct = 3750595090000885317632;
assert(isequal(lastndigit(base,expo,n),y_correct))
|
Find all elements less than 0 or greater than 10 and replace them with NaN
13048 Solvers
Find the peak 3n+1 sequence value
1107 Solvers
Matrix with different incremental runs
249 Solvers
Celsius to Fahrenheit converter
388 Solvers
364 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!