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 priority queue
- python zip_longest
- 파이썬릿코드풀기
- 파이썬 프로그래머스
- 파이썬알고리즘
- python sorted
- 알고리즘풀기
- 상가수익률계산기
- python 알고리즘
- 릿코드풀이
- binary search
- 파이썬릿코드
- python xor
- 릿코드
- python 릿코드
- python Leetcode
- 파이썬 알고리즘
- leetcode풀기
- 릿코드풀기
- 잇츠디모
- leetcode 풀기
- 릿코드 파이썬
- 알고리즘풀이
- 파이썬 릿코드
- 코틀린기초
- LeetCode
- leetcode풀이
- 릿코드 풀기
Archives
- Today
- Total
소프트웨어에 대한 모든 것
LeetCode 풀기 - 328. Odd Even Linked List 본문
반응형
328. Odd Even Linked List
https://leetcode.com/problems/odd-even-linked-list/
문제)
솔루션1)
# Definition for singly-linked list.
# class ListNode:
# def __init__(self, val=0, next=None):
# self.val = val
# self.next = next
class Solution:
def oddEvenList(self, head):
if not head: return head
odd = head
even = head.next
even_temp = head.next
while odd and odd.next:
odd.next = odd.next.next
if odd.next is None:
break
odd = odd.next
even.next = odd.next
even = even.next
odd.next = even_temp
return head
솔루션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 oddEvenList(self, head: Optional[ListNode]) -> Optional[ListNode]:
if not head:
return head
odd = head
even = head.next
even_head = even
while odd and even and even.next:
odd.next = even.next
odd = odd.next
even.next = odd.next
even = even.next
odd.next = even_head
return head
반응형
'알고리즘 > LeetCode' 카테고리의 다른 글
LeetCode 풀기 - 79. Word Search (0) | 2022.03.30 |
---|---|
LeetCode 풀기 - 101. Symmetric Tree (0) | 2022.03.26 |
LeetCode 풀기 - 146. LRU Cache (0) | 2022.03.26 |
LeetCode 풀기 - 895. Maximum Frequency Stack (0) | 2022.03.19 |
LeetCode 풀기 - 71. Simplify Path (0) | 2022.03.15 |
Comments