Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
a = 1;
b =3;
y_correct = [1 10 100];
assert(isequal(your_fcn_name(a,b),y_correct))
|
2 | Pass |
%%
a = 5;
b =1;
y_correct = [5];
assert(isequal(your_fcn_name(a,b),y_correct))
|
3 | Pass |
%%
a = 7;
b =6;
y_correct = [7 70 700 7000 70000 700000]
assert(isequal(your_fcn_name(a,b),y_correct))
y_correct =
7 70 700 7000 70000 700000
|
Least common multiple of many numbers
189 Solvers
Project Euler: Problem 1, Multiples of 3 and 5
1492 Solvers
377 Solvers
315 Solvers
289 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!