Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 10;
m=2;
y_correct = 1814400;
assert(isequal(your_fcn_name(m,n),y_correct))
|
2 | Fail |
n = 4;
m=3;
y_correct = 4;
assert(isequal(your_fcn_name(m,n),y_correct))
|
3 | Fail |
n = 10;
m=5;
y_correct = 30240;
assert(isequal(your_fcn_name(m,n),y_correct))
|
Increment a number, given its digits
562 Solvers
Project Euler: Problem 5, Smallest multiple
397 Solvers
Find third Side of a right triangle given hypotenuse and a side. No * - or other functions allowed
141 Solvers
136 Solvers
250 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!