Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 10;
m=2;
y_correct = 1814400;
assert(isequal(your_fcn_name(m,n),y_correct))
ans =
1814400
|
2 | Pass |
n = 4;
m=3;
y_correct = 4;
assert(isequal(your_fcn_name(m,n),y_correct))
ans =
4
|
3 | Pass |
n = 10;
m=5;
y_correct = 30240;
assert(isequal(your_fcn_name(m,n),y_correct))
ans =
30240
|
606 Solvers
104 Solvers
316 Solvers
Split a string into chunks of specified length
475 Solvers
Determine the number of odd integers in a vector
435 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!