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));
|
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));
|
Return the largest number that is adjacent to a zero
3116 Solvers
Sort a list of complex numbers based on far they are from the origin.
3793 Solvers
Return the first and last character of a string
1661 Solvers
How many trades represent all the profit?
460 Solvers
165 Solvers