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 zip_longest
- leetcode풀기
- 파이썬 알고리즘
- 코틀린기초
- python xor
- 상가수익률계산기
- python priority queue
- 파이썬알고리즘
- 알고리즘풀기
- 릿코드 풀기
- 파이썬알고리즘풀기
- binary search
- 파이썬 프로그래머스
- python 알고리즘
- 릿코드
- LeetCode
- 릿코드풀기
- 파이썬릿코드
- 릿코드풀이
- 릿코드 파이썬
- python Leetcode
- python 릿코드
- 파이썬릿코드풀기
- leetcode풀이
- 파이썬 알고리즘 풀기
- python sorted
- 잇츠디모
- leetcode 풀기
- 알고리즘풀이
Archives
- Today
- Total
소프트웨어에 대한 모든 것
LeetCode 풀기 - 965. Univalued Binary Tree 본문
반응형
965. Univalued Binary Tree
https://leetcode.com/problems/univalued-binary-tree/
문제)
솔루션1) Recursive
# 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 isUnivalTree(self, root: Optional[TreeNode]) -> bool:
def recur(node, val):
if node is None:
return True
if node.val != val:
return False
return recur(node.left, node.val) and recur(node.right, node.val)
return recur(root, root.val)
반응형
'알고리즘 > LeetCode' 카테고리의 다른 글
LeetCode 풀기 - 258. Add Digits (0) | 2022.02.08 |
---|---|
LeetCode 풀기 - 454. 4Sum II (0) | 2022.02.07 |
LeetCode 풀기 - 1022. Sum of Root To Leaf Binary Numbers (0) | 2022.01.11 |
LeetCode 풀기 - 382. Linked List Random Node (0) | 2022.01.11 |
LeetCode 풀기 - 67. Add Binary (0) | 2022.01.10 |
Comments