From 8b2fe318ee01eeff166c62df27206aaa46ff9710 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AD=99=E6=B5=B7=E6=B4=B2?= Date: Tue, 25 Sep 2018 18:59:00 +0800 Subject: [PATCH] =?UTF-8?q?Update=20=E9=9D=A2=E8=AF=95=E6=80=BB=E7=BB=93.m?= =?UTF-8?q?d?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- notes/面试总结.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: