Skip to content

Commit ec51c39

Browse files
committed
week04_1_2_solution
1 parent 8cb51cc commit ec51c39

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

maximum-depth-of-binary-tree/YOOHYOJEONG.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ def maxDepth(self, root):
1515
right_depth = self.maxDepth(root.right)
1616

1717
# 현재 노드를 포함해야 하므로 +1
18-
# 왼쪽과 오른쪽 중 더 깊은 쪽을 선택
18+
# 왼쪽과 오른쪽 중 더 깊은 쪽을 선택

merge-two-sorted-lists/YOOHYOJEONG.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@ def mergeTwoLists(self, list1, list2):
3333
list2.next = self.mergeTwoLists(list1, list2.next)
3434

3535
# 현재 선택된 list2를 반환
36-
return list2
36+
return list2

0 commit comments

Comments
 (0)