Skip to content

Commit 6868654

Browse files
authored
Update 41. 反转链表.md
1 parent 83d3201 commit 6868654

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

41. 反转链表.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
***给你单链表的头节点 head ,请你反转链表,并返回反转后的链表。***
22

3-
![algo22](./images/algo22.jpg)
3+
![algo22](./images/algo23.jpg)
44

55
```
66
输入:head = [1,2,3,4,5]
@@ -44,4 +44,4 @@ class Solution:
4444
head.next.next = head
4545
head.next = None
4646
return cur
47-
```
47+
```

0 commit comments

Comments
 (0)