why???
Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
%%
v = [2, 3, 5];
n = 8;
correct = [2, 3];
actual = subset_sum(v, n);
assert(isequal(actual, correct))
Error: Undefined function 'ff2n' for input arguments of type 'double'.
|
2 | Fail |
%%
v = [5, 3, 2];
n = 2;
correct = 3;
actual = subset_sum(v, n);
assert(isequal(actual, correct))
Error: Undefined function 'ff2n' for input arguments of type 'double'.
|
3 | Fail |
%%
v = [2, 3, 5];
n = 4;
correct = [];
actual = subset_sum(v, n);
assert(isequal(actual, correct))
Error: Undefined function 'ff2n' for input arguments of type 'double'.
|
4 | Fail |
%%
v = [1, 1, 1, 1, 1];
n = 5;
correct = [1, 2, 3, 4, 5];
actual = subset_sum(v, n);
assert(isequal(actual, correct))
Error: Undefined function 'ff2n' for input arguments of type 'double'.
|
5 | Fail |
%%
v = [1, 2, 3, 4, 100];
n = 100;
correct = 5;
actual = subset_sum(v, n);
assert(isequal(actual, correct))
Error: Undefined function 'ff2n' for input arguments of type 'double'.
|
6 | Fail |
%%
v = [-7, -3, -2, 8, 5];
n = 0;
correct = [2, 3, 5];
actual = subset_sum(v, n);
assert(isequal(actual, correct))
Error: Undefined function 'ff2n' for input arguments of type 'double'.
|
Find best placement for ordered dominoes (harder)
205 Solvers
How long is the longest prime diagonal?
338 Solvers
420 Solvers
find the maximum element of the matrix
349 Solvers
Calculate Amount of Cake Frosting
7549 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!