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))
|
2 | Pass |
x = {'9','33'};
y_correct = 42;
assert(isequal(addingcells(x),y_correct))
|
3 | Pass |
x = {'9','33','-12'};
y_correct = 30;
assert(isequal(addingcells(x),y_correct))
|
4 | Pass |
x = {'9','33','122'};
y_correct = 164;
assert(isequal(addingcells(x),y_correct))
|
1579 Solvers
Project Euler: Problem 1, Multiples of 3 and 5
1063 Solvers
4097 Solvers
232 Solvers
Sum of diagonals elements of a matrix
132 Solvers