diff --git a/5-algorithms/ch17/60-1.py b/5-algorithms/ch17/60-1.py index 82bd1c2..58edff0 100644 --- a/5-algorithms/ch17/60-1.py +++ b/5-algorithms/ch17/60-1.py @@ -15,4 +15,4 @@ def insertionSortList(self, head: ListNode) -> ListNode: cur.next, head.next, head = head, cur.next, head.next cur = parent - return cur.next + return cur.next