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
|
3418 Solvers
4108 Solvers
Construct a string from letters and counts
113 Solvers
299 Solvers
301 Solvers