Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
p=[-2 0 1 -1 3 2]
q=[1 0 -1 2 4]
y_correct =[-2 0 3 -5 -6 5 -1 0 16 8];
assert(isequal(MulPoly(p,q),y_correct))
p =
-2 0 1 -1 3 2
q =
1 0 -1 2 4
|
2 | Pass |
p=[-2 0 1 0 -3 1]
q=[-1 0 -1 2 2]
y_correct =[2 0 1 -4 -2 1 5 -7 -4 2];
assert(isequal(MulPoly(p,q),y_correct))
p =
-2 0 1 0 -3 1
q =
-1 0 -1 2 2
|
3 | Pass |
p=[1 2 0 5 0 3]
q=[3 2 5 1 0 2]
y_correct =[3 8 9 26 12 36 15 15 13 0 6];
assert(isequal(MulPoly(p,q),y_correct))
p =
1 2 0 5 0 3
q =
3 2 5 1 0 2
|
232 Solvers
Determine Whether an array is empty
561 Solvers
Who has power to do everything in this world?
256 Solvers
Sum the numbers on the main diagonal
375 Solvers
Create a square matrix of zeros of even order
72 Solvers