diff --git a/notes/面试总结.md b/notes/面试总结.md index bd2fa690..b5c2d3f3 100644 --- a/notes/面试总结.md +++ b/notes/面试总结.md @@ -403,7 +403,7 @@ public ArrayList printListFromTailToHead(ListNode listNode) { ``` ```python -def printListFromTailToHead(self, listNode): +def printListFromTailToHead(listNode): # write code here l = list() while listNode: