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
- 금융문자분석경진대회
- 자연어처리
- Docker
- hackerrank
- 맥북
- gs25
- 더현대서울 맛집
- Git
- programmers
- Real or Not? NLP with Disaster Tweets
- 우분투
- 편스토랑 우승상품
- 코로나19
- ubuntu
- 프로그래머스
- AI 경진대회
- Kaggle
- 캐치카페
- SW Expert Academy
- 백준
- leetcode
- 편스토랑
- Baekjoon
- 파이썬
- github
- PYTHON
- 프로그래머스 파이썬
- ChatGPT
- dacon
- 데이콘
Archives
- Today
- Total
솜씨좋은장씨
[leetCode] 203. Remove Linked List Elements (Python) 본문
Programming/코딩 1일 1문제
[leetCode] 203. Remove Linked List Elements (Python)
솜씨좋은장씨 2020. 9. 29. 15:43728x90
반응형
Remove all elements from a linked list of integers that have value val.
Example:
Input: 1->2->6->3->4->5->6, val = 6
Output: 1->2->3->4->5
Solution
# Definition for singly-linked list.
# class ListNode:
# def __init__(self, val=0, next=None):
# self.val = val
# self.next = next
class Solution:
def removeElements(self, head: ListNode, val: int) -> ListNode:
while head and head.val == val:
head = head.next
if not head:
return head
next_node = head
while next_node and next_node.next:
if next_node.next.val == val:
next_node.next = next_node.next.next
else:
next_node = next_node.next
return head
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[leetCode] 190. Reverse Bits (Python) (0) | 2020.10.01 |
---|---|
[leetCode] 234. Palindrome Linked List (Python) (0) | 2020.09.30 |
[leetCode] 1417. Reformat The String (Python) (0) | 2020.09.28 |
[leetCode] 1051. Height Checker (Python) (0) | 2020.09.27 |
[leetCode] 925. Long Pressed Name (Python) (0) | 2020.09.25 |
Comments