great! well done
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))
|
Extract leading non-zero digit
1205 Solvers
Vectorizing, too easy or too hard?
128 Solvers
299 Solvers
292 Solvers
Find the Nth Root of a Given Number
187 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!