반응형
250x250
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
- exoplayer #mediaplayer #엑소플레이어 #안드로이드 #android
- dfs #이진트리 #트리구조 #직렬화 #역직렬화 #파이썬 #리트코드 #leetcode #python
- final #java #자바 #안드로이드
- 아스테리스크 #Asterisk #파이썬
- handler #looper #thread #runnable #핸들러 #루퍼 #스레드 #러너블
- dfs #그래프 #graph #python #leetcode #course #schedule
- 다익스트라 #알고리즘 #bfs #그리디 #다이나믹프로그래밍 #leetcode #python
- dfs #python #leetcode #combination
- 파이썬 #zip
- python #백준 #2580 #스도쿠 #dfs #백트래킹
- context #android #getApplicationContext #activity #생명주기 #lifecycle
- 코틀린 #Do it #깡샘 #안드로이드
- gcd #최대공약수 #백준 #2981 #검문
- python #백준 #9375 #패션왕 #신해빈
- dfs #bfs #leetcode #python
- dfs #leetcode #python #graph #그래프
- leetcode #python #dfs #재귀
- dfs #python #leetcode
- 해시테이블 #heapq #파이썬 #리트코드 #알고리즘
- leetcode #subsets #dfs #itertools #python
- 다익스트라 #dijkstra #leetcode #파이썬 #python #algorithm #787
- 2004 #조합 0의 개수 #백준
- 리트코드 #팰린드롬 #파이썬
- dfs #bfs #이진트리 #파이썬 #리트코드
- dfs #bfs #트리구조 #이진트리 #leetcode #python #파이썬
- dfs #leetcode #python
- 백준 #파이썬 #bfs #백트래킹 #1697 #숨바꼭질
- dfs #bfs #트리구조 #이진트리 #leetcode #파이썬 #python
- AsyncTask #doinbackground #스레드 #thread #android #안드로이드
- Python #leetcode #dfs #그래프 #백트래킹
Archives
- Today
- Total
멋진 개발자가 되고 싶다
[LeetCode] 2. 두 수의 덧셈(Add Two Numbers) 본문
728x90
반응형
역순으로 저장된 연결 리스트의 숫자를 더하라.
Input: l1 = [2,4,3], l2 = [5,6,4]
Output: [7,0,8]
Explanation: 342 + 465 = 807.
1. 자료형 변환
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
32
33
34
35
36
37
38
|
# Definition for singly-linked list.
# class ListNode:
# def __init__(self, val=0, next=None):
# self.val = val
# self.next = next
class Solution:
def reverseList(self, head:ListNode):
node, prev = head, None
while node:
next, node.next = node.next, prev
prev, node = node, next
return prev
def toList(self, node:ListNode)->list:
list = []
while node:
list.append(node.val)
node = node.next
return list
def toReversedLinkedList(self, result:str)->ListNode:
prev = None
for r in result:
node = ListNode(r)
node.next = prev
prev = node
return node
def addTwoNumbers(self, l1: ListNode, l2: ListNode) -> ListNode:
a = self.toList(self.reverseList(l1))
b = self.toList(self.reverseList(l2))
resultStr = int(''.join(str(e) for e in a)) + int(''.join(str(e) for e in b))
return self.toReversedLinkedList(str(resultStr))
|
cs |
해설:
단순하게 우리가 생각하는 그 방법.
역순으로 저장되어 있으니 연결 리스트를 뒤집어주고
연결 리스트의 값을 더해줘야 하니까 파이썬 리스트로 변환시켜 준다.
그리고 두 파이썬 리스트를 int로 변환하여 더해준 다음
다시 역순 연결 리스트로 바꿔준다.
2. 전가산기 구현
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# 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: ListNode, l2: ListNode) -> ListNode:
root = head = ListNode(0)
carry = 0
while l1 or l2 or carry:
sum = 0
if l1:
sum += l1.val
l1 = l1.next
if l2:
sum += l2.val
l2 = l2.next
carry, val = divmod(sum+carry,10)
head.next = ListNode(val)
head = head.next
return root.next
|
cs |
해설:
1번 풀이와 달리 우아한 풀이이다.
carry라는 변수를 두고 sum이 10 이상일 경우 올림수로 carry=1이 입력된다.
그리고 다음 while문 반복에 sum+carry 부분을 통해 올림수를 더해준다.
출처: 파이썬 알고리즘 인터뷰(박상길 지음, 정진호 일러스트) 출판사[책만]
728x90
반응형
'Algorithm Study > leetcode' 카테고리의 다른 글
[LeetCode, Python] 328. 홀짝 연결 리스트(Odd Even Linked List) (0) | 2021.07.07 |
---|---|
[LeetCode,Python] 24. 페어의 노드 스왑(Swap Nodes in Pairs) (0) | 2021.07.03 |
[LeetCode] 206. 역순 연결 리스트(Reverse Linked List) (0) | 2021.07.01 |
[LeetCode] 21. 두 정렬 리스트의 병합(Merge Two Sorted Lists) (0) | 2021.07.01 |
[LeetCode] 234. 팰린드롬 연결 리스트(Palindrome Linked List) (0) | 2021.06.30 |