Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = {'9','33'};
y_correct = 42;
assert(isequal(addingcells(x),y_correct))
ans =
42
|
2 | Pass |
x = {'9','33'};
y_correct = 42;
assert(isequal(addingcells(x),y_correct))
ans =
42
|
3 | Pass |
x = {'9','33','-12'};
y_correct = 30;
assert(isequal(addingcells(x),y_correct))
ans =
30
|
4 | Pass |
x = {'9','33','122'};
y_correct = 164;
assert(isequal(addingcells(x),y_correct))
ans =
164
|
12380 Solvers
Back to basics 12 - Input Arguments
525 Solvers
Remove the two elements next to NaN value
411 Solvers
483 Solvers
257 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!