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))
ls =
3 4 5
i =
0
|
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))
ls =
1 3
i =
0
|
3 | Pass |
a=[1];
b=[1 2 3];
y_correct = [1 2 4];
assert(isequal(rwpadd(a,b),y_correct))
ls =
1
i =
0
|
given 3 sides, find area of this triangle
600 Solvers
Remove the two elements next to NaN value
309 Solvers
Given a 4x4 matrix, swap the two middle columns
299 Solvers
253 Solvers
206 Solvers