This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
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
|
14185 Solvers
307 Solvers
07 - Common functions and indexing 3
254 Solvers
255 Solvers
303 Solvers