122. Add Two Series with a Fill Value

Medium

Add s1 and s2 element-wise, aligning by index. For a label that exists in only one of the two Series, treat the missing side as 0 instead of producing NaN.

Sample data: s1:

a    1
b    2
c    3

s2:

b    10
c    20
d    30
Implement solve(...)