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))
ans =
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))
ans =
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))
ans =
1 2 4
|
Generate a string like abbcccddddeeeee
155 Solvers
202 Solvers
263 Solvers
424 Solvers
07 - Common functions and indexing 5
254 Solvers