[LeetCode] 43. Multiply Strings
Python
class Solution:
def multiply(self, num1: str, num2: str) -> str:
return str(int(num1) * int(num2))
class Solution:
def multiply(self, num1: str, num2: str) -> str:
return str(int(num1) * int(num2))
댓글남기기