This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 6;
y_correct = 60;
assert(isequal(euler005(x),y_correct))
|
2 | Pass |
%%
x = 10;
y_correct = 2520;
assert(isequal(euler005(x),y_correct))
|
3 | Pass |
%%
x = 12;
y_correct = 27720;
assert(isequal(euler005(x),y_correct))
|
4 | Pass |
%%
x = 14;
y_correct = 360360;
assert(isequal(euler005(x),y_correct))
|
Remove the small words from a list of words.
672 Solvers
Project Euler: Problem 7, Nth prime
521 Solvers
Convert a numerical matrix into a cell array of strings
455 Solvers
Back to basics 20 - singleton dimensions
254 Solvers
2030 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!