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 릿코드
- 파이썬 알고리즘 풀기
- 파이썬릿코드
- python sorted
- 파이썬알고리즘풀기
- 릿코드풀기
- leetcode풀이
- 알고리즘풀이
- 릿코드 파이썬
- leetcode풀기
- 파이썬 프로그래머스
- LeetCode
- 파이썬알고리즘
- python 알고리즘
- python zip_longest
- 파이썬릿코드풀기
- 파이썬 알고리즘
- 잇츠디모
- 알고리즘풀기
- 릿코드
- 릿코드 풀기
- python Leetcode
- 릿코드풀이
- leetcode 풀기
- binary search
- 코틀린기초
- python xor
- python priority queue
Archives
- Today
- Total
소프트웨어에 대한 모든 것
LeetCode 풀기 - 2181. Merge Nodes in Between Zeros 본문
반응형
2181. Merge Nodes in Between Zeros
https://leetcode.com/problems/merge-nodes-in-between-zeros/
문제)
솔루션1)
# Definition for singly-linked list.
# class ListNode:
# def __init__(self, val=0, next=None):
# self.val = val
# self.next = next
class Solution:
def mergeNodes(self, head):
cur = head.next
cur_sum = 0
res = []
while cur:
if cur.val == 0:
res.append(cur_sum)
cur_sum = 0
else:
cur_sum += cur.val
cur = cur.next
return arr_to_list(res)
def arr_to_list(nums):
head = None
for n in nums:
node = ListNode(n)
if head is None:
head = node
prev = head
else:
prev.next = node
prev = node
return head
반응형
'알고리즘 > LeetCode' 카테고리의 다른 글
LeetCode 풀기 - 413. Arithmetic Slices (0) | 2022.03.09 |
---|---|
LeetCode 풀기 - 47. Permutations II (0) | 2022.03.08 |
LeetCode 풀기 - 287. Find the Duplicate Number (0) | 2022.03.02 |
LeetCode 풀기 - 34. Find First and Last Position of Element in Sorted Array (0) | 2022.02.28 |
LeetCode 풀기 - 64. Minimum Path Sum (0) | 2022.02.28 |
Comments