본문 바로가기
python-algorithm

Leetcode 43. Multiply Strings

by 무적김두칠 2021. 7. 15.

1
2
3
class Solution:
    def multiply(self, num1: str, num2: str-> str:
        return str (int(num1)*int(num2))
cs

딱히 어려운 문제는 아니구 Type casting만 신경쓰시면됩니다

반응형

'python-algorithm' 카테고리의 다른 글

Leetcode 171. Excel Sheet Column Number  (0) 2021.07.15
Leetcode 50. Pow(x, n)  (0) 2021.07.15
Leetcode 29. Divide Two Integers  (0) 2021.07.15
Leetcode 66. Plus One  (0) 2021.07.15
Leetcode 67. Add Binary  (0) 2021.07.15

댓글