foolish fly fox's blog
--Stay hungry, stay foolish.
--Forever young, forever weeping.
https://leetcode.com/problems/complex-number-multiplication/description/
Given two strings representing two complex numbers.
You need to return a string representing their multiplication. Note i 2 = -1 according to the definition.
Example 1:
Input: "1+1i", "1+1i"
Output: "0+2i"
Explanation: (1 + i) * (1 + i) = 1 + i2 + 2 * i = 2i, and you need convert it to the form of 0+2i.
Example 2:
Input: "1+-1i", "1+-1i"
Output: "0+-2i"
Explanation: (1 - i) * (1 - i) = 1 + i2 - 2 * i = -2i, and you need convert it to the form of 0+-2i.
Note:
class Solution: def complexNumberMultiply(self, a, b): """ :type a: str :type b: str :rtype: str """ s1, s2 = a.split('+') r1, i1 = int(s1), int(s2[:-1]) s1, s2 = b.split('+') r2, i2 = int(s1), int(s2[:-1]) return "{}+{}i".format(r1*r2-i1*i2,r1*i2+r2*i1)