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 |
%%
n = 1;
t = 1;
assert(isequal(factorial(n),t))
|
2 | Pass |
%%
n = 2;
t = 2;
assert(isequal(factorial(n),t))
|
3 | Pass |
%%
n = 3;
t = 6;
assert(isequal(factorial (n),t))
|
4 | Pass |
%%
n = 6;
t = 720;
|
14983 Solvers
Back to basics 11 - Max Integer
611 Solvers
Check if number exists in vector
2313 Solvers
07 - Common functions and indexing 6
282 Solvers
What is Sum Of all elements of Matrix
215 Solvers