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'.
|
851 Solvers
559 Solvers
Construct a string from letters and counts
113 Solvers
middleAsColumn: Return all but first and last element as a column vector
314 Solvers
261 Solvers