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))
|
Make one big string out of two smaller strings
1070 Solvers
299 Solvers
Implement simple rotation cypher
806 Solvers
106 Solvers
Find out sum of all elements of given Matrix
272 Solvers