This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 5;
y_correct = 120;
assert(isequal(fact(x),y_correct))
|
2 | Pass |
%%
x = 8;
y_correct = 40320;
assert(isequal(fact(x),y_correct))
|
3 | Pass |
%%
x = 33;
y_correct = 8.683317618811886e+36;
assert(isequal(fact(x),y_correct))
|
Project Euler: Problem 7, Nth prime
522 Solvers
Matrix indexing with two vectors of indices
485 Solvers
163 Solvers
489 Solvers
445 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!