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 |
u = [1 3 5 3]; v = [1,1];
y_correct = [1 2 3];
assert(isequal(poly_div(u,v),y_correct));
ans =
1 2 3
|
2 | Pass |
u=[4 -2 -14 -3 17 21 9]; v = [1 2 1];
y_correct = [4 -10 2 3 9];
assert(isequal(poly_div(u,v),y_correct));
ans =
4 -10 2 3 9
|
Make one big string out of two smaller strings
1148 Solvers
546 Solvers
369 Solvers
511 Solvers
323 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!