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;
y_correct = 1;
assert(isequal(fact(n),y_correct))
y =
1
|
2 | Pass |
n = 0;
y_correct=1;
assert(isequal(fact(n),y_correct))
n=5;
y_correct=120;
assert(isequal(fact(n),y_correct))
y =
1
y =
120
|
434 Solvers
213 Solvers
98 Solvers
121 Solvers
If you have matrix A, create matrix B using matrix A as an "element"
86 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!