Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = [1;1;1];
y_correct = [1 1 1];
assert(isequal(your_fcn_name(x),y_correct))
|
2 | Pass |
%%
x = [1;2;3;4;5;6];
y_correct = [1 2 3 4 5 6];
assert(isequal(your_fcn_name(x),y_correct))
|
1786 Solvers
Determine Whether an array is empty
561 Solvers
Given a window, how many subsets of a vector sum positive
673 Solvers
478 Solvers
Replace every 3rd element in a vector with 4
123 Solvers