Skip to content
Merged
Prev Previous commit
Next Next commit
Update 面试题02.07.链表相交.md
  • Loading branch information
HungYann authored Jul 16, 2022
commit 26f5e59cdaf5536e0b08b94d554e4ef4428732a7
2 changes: 1 addition & 1 deletion problems/面试题02.07.链表相交.md
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ func getIntersectionNode(headA, headB *ListNode) *ListNode {
}
```

递归版本:
双指针

```go
func getIntersectionNode(headA, headB *ListNode) *ListNode {
Expand Down