Skip to content

Commit 108dd8b

Browse files
committed
Fix: add missing newline at end of file
1 parent 2f16d87 commit 108dd8b

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

merge-two-sorted-lists/KwonNayeon.py

+10-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
2. -100 <= Node.val <= 100
55
3. list1 and list2 are sorted in non-decreasing order
66
7+
<Solution 1>
8+
79
Time Complexity: n과 m이 각각 list1과 list2의 길이를 나타낼 때, O(n + m)
810
- 각 노드를 한 번씩만 방문하기 때문
911
@@ -44,4 +46,11 @@ def mergeTwoLists(self, list1: Optional[ListNode], list2: Optional[ListNode]) ->
4446

4547
return result.next
4648

47-
# Solution 2
49+
"""
50+
<Solution 2>
51+
Time Complexity:
52+
53+
Space Complexity:
54+
55+
풀이 방법:
56+
"""

0 commit comments

Comments
 (0)