Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 자연어처리
- 캐치카페
- gs25
- 프로그래머스
- 금융문자분석경진대회
- 편스토랑 우승상품
- AI 경진대회
- 백준
- Real or Not? NLP with Disaster Tweets
- 맥북
- ChatGPT
- dacon
- ubuntu
- 파이썬
- hackerrank
- github
- Baekjoon
- SW Expert Academy
- 코로나19
- Docker
- 프로그래머스 파이썬
- Kaggle
- 데이콘
- 우분투
- 더현대서울 맛집
- 편스토랑
- leetcode
- programmers
- PYTHON
- Git
Archives
- Today
- Total
솜씨좋은장씨
[leetCode] 21. Merge Two Sorted Lists (Python) 본문
728x90
반응형
Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists.
Example:
Input: 1->2->4, 1->3->4
Output: 1->1->2->3->4->4
Solution
# Definition for singly-linked list.
# class ListNode:
# def __init__(self, x):
# self.val = x
# self.next = None
class Solution:
def mergeTwoLists(self, l1: ListNode, l2: ListNode) -> ListNode:
my_l1 = []
while l1 != None:
my_l1.append(int(l1.val))
l1 = l1.next
while l2 != None:
my_l1.append(int(l2.val))
l2 = l2.next
my_l1 = list(sorted(my_l1))
answerList = None
for i in range(len(my_l1)):
if i == 0:
answerList = ListNode(my_l1[i])
else:
new_node = ListNode(my_l1[i])
currNode = answerList
while currNode.next != None:
currNode = currNode.next
currNode.next = new_node
return answerList
Solution 풀이
my_l1 이라는 list에 입력받은 두 개의 list에서 모든 값을 append해주고
sorted 함수로 정렬한 뒤
answerList 에 추가한 후 return 해주었습니다.
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[HackerRank] Sock Merchant (Python) (0) | 2020.03.06 |
---|---|
[leetCode] 414. Third Maximum Number (Python) (0) | 2020.03.05 |
[leetCode] 151. Reverse Words in a String (Python) (0) | 2020.03.03 |
[BaeKJoon] 11656번: 접미사 배열 (Python) (0) | 2020.03.02 |
[Programmers] 스택/큐 : 프린터 (Python) (0) | 2020.03.01 |
Comments