Update 面试总结.md

This commit is contained in:
孙海洲 2018-09-25 18:59:00 +08:00 committed by GitHub
parent aa49ccebab
commit 8b2fe318ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -403,7 +403,7 @@ public ArrayList<Integer> printListFromTailToHead(ListNode listNode) {
```
```python
def printListFromTailToHead(self, listNode):
def printListFromTailToHead(listNode):
# write code here
l = list()
while listNode: