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
- dacon
- 편스토랑 우승상품
- 캐치카페
- AI 경진대회
- Real or Not? NLP with Disaster Tweets
- 금융문자분석경진대회
- 우분투
- github
- SW Expert Academy
- 백준
- 더현대서울 맛집
- 자연어처리
- Git
- PYTHON
- 데이콘
- 파이썬
- leetcode
- ubuntu
- 코로나19
- Docker
- hackerrank
- 편스토랑
- Baekjoon
- 프로그래머스 파이썬
- Kaggle
- programmers
- 프로그래머스
- 맥북
- ChatGPT
- gs25
Archives
- Today
- Total
솜씨좋은장씨
[leetCode] 92. Reverse Linked List II (Python) 본문
728x90
반응형
Reverse a linked list from position m to n. Do it in one-pass.
Note: 1 ≤ m ≤ n ≤ length of list.
Example:
Input: 1->2->3->4->5->NULL, m = 2, n = 4
Output: 1->4->3->2->5->NULL
첫번째 시도
# Definition for singly-linked list.
# class ListNode:
# def __init__(self, val=0, next=None):
# self.val = val
# self.next = next
class Solution:
def reverseBetween(self, head: ListNode, m: int, n: int) -> ListNode:
list_nums = []
while head != None:
list_nums.append(head.val)
head = head.next
sub_m_n = "".join(list(map(str, list_nums[m-1:n])))[::-1]
list_nums[m-1:n] = list(map(int, list(sub_m_n)))
answerList = ListNode(0)
result = answerList
for num in list_nums:
answerList.next = ListNode(num)
answerList = answerList.next
return result.next
linkedlist의 모든 값을 리스트로 만든 후에 필요한 부분만 반대로 돌리도록 했는데
반대로 돌리는 부분을 string으로 변환한 후에 반대로 돌리려고 했는데 음수가 있다는 것을 깜빡해서 실패했습니다.
Solution
# Definition for singly-linked list.
# class ListNode:
# def __init__(self, val=0, next=None):
# self.val = val
# self.next = next
class Solution:
def reverseBetween(self, head: ListNode, m: int, n: int) -> ListNode:
list_nums = []
while head != None:
list_nums.append(head.val)
head = head.next
sub_m_n = list_nums[m-1:n]
reverse_sub = []
for i in range(len(sub_m_n)-1, -1, -1):
reverse_sub.append(sub_m_n[i])
list_nums[m-1:n] = reverse_sub
answerList = ListNode(0)
result = answerList
for num in list_nums:
answerList.next = ListNode(num)
answerList = answerList.next
return result.next
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[leetCode] 1523. Count Odd Numbers in an Interval Range (Python) (0) | 2020.12.28 |
---|---|
[leetCode] 1539. Kth Missing Positive Number (Python) (0) | 2020.12.27 |
[Programmers] 최고의 집합 (Python) (0) | 2020.12.22 |
[Programmers] 이상한 문자 만들기 (Python) (0) | 2020.12.19 |
[Programmers] 두 개 뽑아서 더하기 (Python) (0) | 2020.12.18 |
Comments