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
- 파이썬 알고리즘 풀기
- binary search
- 릿코드풀기
- LeetCode
- 릿코드
- 릿코드 풀기
- 상가수익률계산기
- python sorted
- 릿코드풀이
- leetcode풀기
- 코틀린기초
- 파이썬알고리즘풀기
- 파이썬릿코드
- python 알고리즘
- 파이썬 릿코드
- 잇츠디모
- leetcode풀이
- python Leetcode
- 알고리즘풀이
- 파이썬알고리즘
- 파이썬 알고리즘
- python xor
- leetcode 풀기
- python priority queue
- 파이썬릿코드풀기
- python zip_longest
- 알고리즘풀기
- python 릿코드
- 릿코드 파이썬
- 파이썬 프로그래머스
Archives
- Today
- Total
소프트웨어에 대한 모든 것
LeetCode 풀기 - 1026. Maximum Difference Between Node and Ancestor 본문
알고리즘/LeetCode
LeetCode 풀기 - 1026. Maximum Difference Between Node and Ancestor
앤테바 2021. 12. 31. 20:48반응형
1026. Maximum Difference Between Node and Ancestor
https://leetcode.com/problems/maximum-difference-between-node-and-ancestor/
문제)
솔루션1) Recursive
Consistency is a key!!!
2021년 마지막 문제 풀이입니다.
# 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 maxAncestorDiff(self, root: Optional[TreeNode]) -> int:
def recur(node, min_val, max_val):
if node is None:
return 0
max_diff = max(abs(min_val - node.val), abs(max_val - node.val))
min_val = min(min_val, node.val)
max_val = max(max_val, node.val)
return max(recur(node.left, min_val, max_val), recur(node.right, min_val, max_val), max_diff)
return recur(root, root.val, root.val)
반응형
'알고리즘 > LeetCode' 카테고리의 다른 글
LeetCode 풀기 - 1094. Car Pooling (0) | 2022.01.07 |
---|---|
LeetCode 풀기 - 997. Find the Town Judge (0) | 2022.01.04 |
LeetCode 풀기 - 559. Maximum Depth of N-ary Tree (0) | 2021.12.31 |
LeetCode 풀기 - 1356. Sort Integers by The Number of 1 Bits (0) | 2021.12.29 |
LeetCode 풀기 - 1380. Lucky Numbers in a Matrix (0) | 2021.12.29 |
Comments