일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
- 파이썬
- Substring with Concatenation of All Words
- 109. Convert Sorted List to Binary Search Tree
- 30. Substring with Concatenation of All Words
- attribute
- 프로그래머스
- kaggle
- t1
- 운영체제
- Regular Expression
- Python
- Convert Sorted List to Binary Search Tree
- Class
- shiba
- 715. Range Module
- 43. Multiply Strings
- Python Code
- LeetCode
- 315. Count of Smaller Numbers After Self
- 밴픽
- 컴퓨터의 구조
- Decorator
- concurrency
- Protocol
- Generator
- iterator
- data science
- DWG
- 시바견
- Python Implementation
- Today
- Total
목록43. Multiply Strings (2)
Scribbling
class Solution: def multiply(self, num1: str, num2: str) -> str: if num1 == '0' or num2 == '0': return '0' ret = [0] * (len(num1) + len(num2)) for i in range(len(num1)-1, -1, -1): carry = 0 for j in range(len(num2)-1, -1, -1): temp = ret[i+j+1] + int(num1[i]) * int(num2[j]) + carry carry = temp // 10 ret[i+j+1] = temp % 10 ret[i] = carry ret = ''.join(map(str, ret)) return ret.lstrip('0')
class Solution: def multiply(self, num1: str, num2: str) -> str: if num1 == '0' or num2 == '0': return '0' ret = [0] * (len(num1) + len(num2)) for i in range(len(num1)-1, -1, -1): carry = 0 for j in range(len(num2)-1, -1, -1): temp = ret[i+j+1] + int(num1[i]) * int(num2[j]) + carry carry = temp // 10 ret[i+j+1] = temp % 10 ret[i] = carry ret = ''.join(map(str, ret)) return ret.lstrip('0')