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
- 파이썬 알고리즘 풀기
- 파이썬 릿코드
- binary search
- 파이썬 프로그래머스
- 릿코드
- 코틀린기초
- leetcode풀기
- 파이썬알고리즘
- python sorted
- python zip_longest
- 잇츠디모
- 릿코드 풀기
- 릿코드 파이썬
- 파이썬 알고리즘
- python 알고리즘
- LeetCode
- python xor
- 상가수익률계산기
- 파이썬알고리즘풀기
- python Leetcode
- leetcode 풀기
- python 릿코드
- 릿코드풀이
- 릿코드풀기
- python priority queue
- leetcode풀이
- 파이썬릿코드풀기
- 알고리즘풀기
- 파이썬릿코드
- 알고리즘풀이
Archives
- Today
- Total
소프트웨어에 대한 모든 것
LeetCode 풀기 - 2. Add Two Numbers 본문
반응형
2. Add Two Numbers
https://leetcode.com/problems/add-two-numbers/
문제)
솔루션1) bruto-force
풀이 순서:
1) 리스트를 array 자료구조로 변환
2) carry를 계산하면서 각 자리수 add
3) 최종 결과물 array를 리스트로 변환해서 리턴
# Definition for singly-linked list.
# class ListNode:
# def __init__(self, val=0, next=None):
# self.val = val
# self.next = next
class Solution:
def addTwoNumbers(self, l1: Optional[ListNode], l2: Optional[ListNode]) -> Optional[ListNode]:
# 리스트노드를 array 자료구조로 변환
def trans_to_arr(head):
nums = []
while head:
nums.append(head.val)
head = head.next
return nums
# array를 리스트노드로 변환
def trans_to_list(nums):
dummy = cur = ListNode(0)
for n in nums:
cur.next = ListNode(n)
cur = cur.next
return dummy.next
nums1 = trans_to_arr(l1)
nums2 = trans_to_arr(l2)
# 두 수 더하기 연산
res = []
carry = 0
for n1, n2 in zip_longest(nums1, nums2, fillvalue=0):
carry, remainder = divmod(n1+n2+carry, 10)
res.append(remainder)
if carry == 1:
res.append(1)
return trans_to_list(res)
솔루션2)
솔루션1을 더 심플하게 개선한 버전입니다.
# Definition for singly-linked list.
# class ListNode:
# def __init__(self, val=0, next=None):
# self.val = val
# self.next = next
class Solution:
def addTwoNumbers(self, l1: Optional[ListNode], l2: Optional[ListNode]) -> Optional[ListNode]:
dummy = cur = ListNode(0)
carry = 0
while l1 or l2 or carry:
cur.next = ListNode()
cur = cur.next
n1, n2 = 0, 0
if l1:
n1 = l1.val
l1 = l1.next
if l2:
n2 = l2.val
l2 = l2.next
carry, remainder = divmod(n1 + n2 + carry, 10)
cur.val = remainder
return dummy.next
반응형
'알고리즘 > LeetCode' 카테고리의 다른 글
LeetCode 풀기 - 895. Maximum Frequency Stack (0) | 2022.03.19 |
---|---|
LeetCode 풀기 - 71. Simplify Path (0) | 2022.03.15 |
LeetCode 풀기 - 2120. Execution of All Suffix Instructions Staying in a Grid (0) | 2022.03.10 |
LeetCode 풀기 - 413. Arithmetic Slices (0) | 2022.03.09 |
LeetCode 풀기 - 47. Permutations II (0) | 2022.03.08 |
Comments