Skip to content

Commit 04d4401

Browse files
committed
feat: review "validate-binary-search-tree"
1 parent 86e4ca9 commit 04d4401

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

valid-palindrome/shinsj4653.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
"""
2+
[문제풀이]
3+
# Inputs
4+
5+
# Outputs
6+
7+
# Constraints
8+
9+
# Ideas
10+
11+
[회고]
12+
13+
"""

validate-binary-search-tree/shinsj4653.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,7 @@ def isValidBST(self, root: Optional[TreeNode]) -> bool:
7373
결국 풀이 참고
7474
7575
[회고]
76-
77-
76+
상한값, 하한값 까지 넘기는 사고 장착하기! 복습 또 복습!
7877
"""
7978

8079
# Definition for a binary tree node.

0 commit comments

Comments
 (0)