Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = num2cell(1:10);
to_remove = 3;
y_correct = {1 2 4 5 6 7 8 9 10};
assert(isequal(remove_from_cell_array(x,to_remove),y_correct))
idx =
1 2 3 4 5 6 7 8 9 10
|
2 | Pass |
x = num2cell(1:5)';
to_remove = 1:2:5;
y_correct = {2 4}';
assert(isequal(remove_from_cell_array(x,to_remove),y_correct))
idx =
1 2 3 4 5
|
1312 Solvers
Get the area codes from a list of phone numbers
417 Solvers
Determine Whether an array is empty
561 Solvers
263 Solvers
Add a row of zeros on top of a matrix
144 Solvers