티스토리 뷰
문제
링크된 목록이 주어지면 인접한 두 노드마다 스왑하고 해당 헤드를 반환
하라.
목록 노드의 값을 수정하지 않고 문제를 해결
해야 한다.(즉, 노드 자체만 변경
될 수 있음).
leetcode 24 - Swap Nodes in Pairs
코드
class Solution:
def swapPairs(self, head: Optional[ListNode]) -> Optional[ListNode]:
cur = head
while cur and cur.next:
# 값만 교환
cur.val, cur.next.val = cur.next.val, cur.val
cur = cur.next.next
return
'알고리즘' 카테고리의 다른 글
[algorithm] 프로그래머스 - 없는 숫자 더하기 (파이썬) (0) | 2022.03.20 |
---|---|
[algorithm] 프로그래머스 - 완주하지 못한 선수 (파이썬) (0) | 2022.03.20 |
[algorithm] leetcode 206 - Reverse Linked List (파이썬) (0) | 2022.03.16 |
[algorithm] leetcode 21 - Merge Two Sorted Lists (파이썬) (0) | 2022.03.15 |
[algorithm] leetcode 121 - Best Time to Buy and Sell Stock (파이썬) (0) | 2022.03.14 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 알고리즘
- 그리디
- 데이터베이스
- 인프런
- 김영한
- 노마드코더
- 스프링부트
- 문자열
- Spring
- 코테
- 정렬
- 노마드
- 백준
- 북클럽
- MySQL
- 리팩토링
- 파이썬
- 스프링
- spring boot
- 스프링 부트
- Real MySQL
- 코틀린
- mysql 8.0
- webflux
- kotlin
- 릿코드
- 구현
- Algorithm
- 자료구조
- leetcode
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함