Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [-1 2 3 4 7 9];
c=[1 4 6];
y_correct = 12;
assert(isequal(sumvec(x,c),y_correct))
|
2 | Pass |
x = [-50 -24 0 4 10 14 19 18];
c=[2 3 6 7];
y_correct = 9;
assert(isequal(sumvec(x,c),y_correct))
|
1726 Solvers
Find the peak 3n+1 sequence value
1107 Solvers
How to find the position of an element in a vector without using the find function
2477 Solvers
Reverse the elements of an array
687 Solvers
286 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!