Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
29 | 30 | 31 |
Tags
- python 알고리즘
- 알고리즘풀기
- 릿코드 풀기
- python sorted
- 릿코드
- 상가수익률계산기
- python Leetcode
- leetcode 풀기
- 코틀린기초
- 릿코드풀기
- python 릿코드
- python priority queue
- LeetCode
- 파이썬릿코드
- binary search
- 릿코드풀이
- leetcode풀이
- 파이썬 알고리즘 풀기
- 릿코드 파이썬
- 파이썬 프로그래머스
- 파이썬 릿코드
- 파이썬알고리즘
- python zip_longest
- 파이썬알고리즘풀기
- leetcode풀기
- python xor
- 파이썬 알고리즘
- 잇츠디모
- 알고리즘풀이
- 파이썬릿코드풀기
Archives
- Today
- Total
소프트웨어에 대한 모든 것
LeetCode 풀기 - 43. Multiply Strings 본문
반응형
43. Multiply Strings
https://leetcode.com/problems/multiply-strings/
문제)
솔루션1)
Built-in BigInteger library를 사용하지 말아햐 하는 조건이 있다.
string을 number로 바꾸는 함수를 만들어야한다.
class Solution:
def multiply(self, num1: str, num2: str) -> str:
num_mapping = {'0': 0, '1': 1, '2': 2, '3': 3, '4': 4,
'5': 5, '6': 6, '7': 7, '8': 8, '9': 9}
def str_to_int(num_str):
num = 0
for i, c in enumerate(num_str[::-1]):
num += pow(10, i) * num_mapping[c]
return num
return str(str_to_int(num1) * str_to_int(num2))
솔루션2)
솔루션1)에서 char to num 변환하는 것을 hash를 사용했는데 ord() 함수를 이용하게 변경했다
class Solution:
def multiply(self, num1: str, num2: str) -> str:
def str_to_int(num_str):
num = 0
for i, c in enumerate(num_str[::-1]):
num += pow(10, i) * (ord(c) - ord('0'))
return num
return str(str_to_int(num1) * str_to_int(num2))
반응형
'알고리즘 > LeetCode' 카테고리의 다른 글
LeetCode 풀기 - 283. Move Zeroes (0) | 2021.11.12 |
---|---|
LeetCode 풀기 - 46. Permutations (0) | 2021.11.11 |
LeetCode 풀기 - 1704. Determine if String Halves Are Alike (0) | 2021.11.10 |
LeetCode 풀기 - 189. Rotate Array (0) | 2021.11.10 |
LeetCode 풀기 - 278. First Bad Version (0) | 2021.11.10 |
Comments