일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 43. Multiply Strings
- Python Implementation
- iterator
- Protocol
- kaggle
- shiba
- 밴픽
- DWG
- Regular Expression
- Generator
- data science
- Convert Sorted List to Binary Search Tree
- 파이썬
- Class
- attribute
- 컴퓨터의 구조
- Python Code
- 30. Substring with Concatenation of All Words
- 315. Count of Smaller Numbers After Self
- 715. Range Module
- 프로그래머스
- 109. Convert Sorted List to Binary Search Tree
- concurrency
- 운영체제
- 시바견
- LeetCode
- Decorator
- Python
- Substring with Concatenation of All Words
- t1
Archives
- Today
- Total
목록Symmetric Tree (1)
Scribbling
LeetCode: 101. Symmetric Tree
# 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 isSymmetric(self, root: Optional[TreeNode]) -> bool: return self.isMirror(root.left, root.right) def isMirror(self, left, right): if left == None and right == None: return True if left == None or right == None: ret..
Computer Science/Coding Test
2021. 12. 19. 21:46