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 xor
- 파이썬 프로그래머스
- 릿코드 파이썬
- 릿코드풀이
- python Leetcode
- binary search
- leetcode풀기
- 릿코드풀기
- 파이썬알고리즘
- 알고리즘풀이
- leetcode풀이
- python zip_longest
- 알고리즘풀기
- python 알고리즘
- 파이썬 릿코드
- 릿코드 풀기
- 잇츠디모
- 상가수익률계산기
- python priority queue
- python sorted
- LeetCode
- 파이썬알고리즘풀기
- 파이썬 알고리즘
- python 릿코드
- leetcode 풀기
- 파이썬 알고리즘 풀기
- 파이썬릿코드
- 릿코드
- 파이썬릿코드풀기
Archives
- Today
- Total
소프트웨어에 대한 모든 것
LeetCode 풀기 - 1325. Delete Leaves With a Given Value 본문
반응형
1325. Delete Leaves With a Given Value
https://leetcode.com/problems/delete-leaves-with-a-given-value/
문제)
솔루션1) Simple 재귀
이진 트리의 순회, 후위 순회에 대해서 이해하고 있다면 쉽게 풀 수 있는 문제입니다.
# Definition for a binary tree node.
# class TreeNode(object):
# def __init__(self, val=0, left=None, right=None):
# self.val = val
# self.left = left
# self.right = right
class Solution(object):
def removeLeafNodes(self, root, target):
"""
:type root: TreeNode
:type target: int
:rtype: TreeNode
"""
def recur(node):
if node is None:
return node
node.left = recur(node.left)
node.right = recur(node.right)
if not node.left and not node.right and node.val == target:
return None
return node
root = recur(root)
return root
솔루션2)
솔루션1 좀 더 축약 버전의 코드입니다. recur() 함수를 제거하였습니다.
# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, val=0, left=None, right=None):
# self.val = val
# self.left = left
# self.right = right
class Solution:
def removeLeafNodes(self, root: Optional[TreeNode], target: int) -> Optional[TreeNode]:
if not root:
return None
root.left = self.removeLeafNodes(root.left, target)
root.right = self.removeLeafNodes(root.right, target)
if not root.left and not root.right and root.val == target:
return None
return root
반응형
'알고리즘 > LeetCode' 카테고리의 다른 글
LeetCode 풀기 - 143. Reorder List (0) | 2021.12.23 |
---|---|
LeetCode 풀기 - 1200. Minimum Absolute Difference (0) | 2021.12.21 |
LeetCode 풀기 - 1829. Maximum XOR for Each Query (0) | 2021.12.18 |
LeetCode 풀기 - 2032. Two Out of Three (0) | 2021.12.18 |
LeetCode 풀기 - 1347. Minimum Number of Steps to Make Two Strings Anagram (0) | 2021.12.15 |
Comments