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;
k = 1;
y_correct = 1;
assert(isequal(fcn(n,k),y_correct))
|
2 | Pass |
%%
n = 4;
k = 2;
y_correct = 6;
assert(isequal(fcn(n,k),y_correct))
|
3 | Pass |
%%
n = 20;
k = 10;
y_correct = 184756;
assert(isequal(fcn(n,k),y_correct))
|
1595 Solvers
144 Solvers
Determine Whether an array is empty
561 Solvers
197 Solvers
1078 Solvers