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))
|
309 Solvers
502 Solvers
Test if two numbers have the same digits
187 Solvers
321 Solvers
What is Sum Of all elements of Matrix
292 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!