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 |
a=[3 4 5];
b=[1 4 7 6];
y_correct = [1 7 11 11];
assert(isequal(rwpadd(a,b),y_correct))
a =
5 4 3
b =
6 7 4 1
out =
1 7 11 11
|
2 | Pass |
a=[1 1 1 3 -2];
b=[1 3];
y_correct = [1 1 1 4 1];
assert(isequal(rwpadd(a,b),y_correct))
a =
-2 3 1 1 1
b =
3 1
out =
1 1 1 4 1
|
3 | Pass |
a=[1];
b=[1 2 3];
y_correct = [1 2 4];
assert(isequal(rwpadd(a,b),y_correct))
a =
1
b =
3 2 1
out =
1 2 4
|
54226 Solvers
1836 Solvers
1050 Solvers
325 Solvers
find the maximum element of the matrix
348 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!