Answer to Question #234929 in Python for rasi

Question #234929

Add two polynomials: Given two polynomials A and B, write a program that adds the given two polynomials A and B.


input: output:0

4

0 5

1 0

2 10

3 6

4

0 -5

1 0

2 -10

3 -6


1
Expert's answer
2021-09-09T04:10:45-0400
# output format wasn't specified
d = {}
for i in range(2):
    for _ in range(int(input())):
        p, c = map(int, input().split())
        d[p] = d.get(p, 0) + c
output = ''
for pwr in sorted(d.keys(), reverse=True):
    if d[pwr]:
        if d[pwr] < 0:
            output += '-'
        else:
            output += '+'
        if abs(d[pwr]) != 1:
            output += str(abs(d[pwr]))
        elif not pwr:
            output += '1'
        if pwr:
            output += 'x'
            if pwr != 1:
                output += '^' + str(pwr)
if output:
    print(output.lstrip('+'))
else:
    print(0)

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS