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))
ans =
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))
ans =
1
ans =
120
|
Return the first and last character of a string
3453 Solvers
Switch matrix to a column vector
260 Solvers
324 Solvers
131 Solvers
160 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!