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))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In remove_from_cell_array (line 2)
In ScoringEngineTestPoint1 (line 4)
In solutionTest (line 3)]
|
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))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In remove_from_cell_array (line 2)
In ScoringEngineTestPoint2 (line 4)
In solutionTest (line 5)]
|
835 Solvers
556 Solvers
Project Euler: Problem 8, Find largest product in a large string of numbers
315 Solvers
Right Triangle Side Lengths (Inspired by Project Euler Problem 39)
511 Solvers
ベクトル [1 2 3 4 5 6 7 8 9 10] の作成
292 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!