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))
|
Reverse the Words (not letters) of a String
297 Solvers
404 Solvers
220 Solvers
Make a run-length companion vector
512 Solvers
413 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!