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 the two most distant points
1233 Solvers
363 Solvers
How long is the longest prime diagonal?
280 Solvers
Remove white space from the string
143 Solvers
366 Solvers