Update 面试题02.07.链表相交.md

This commit is contained in:
leo
2022-07-16 11:56:18 +08:00
committed by GitHub
parent 730f58bcce
commit 26f5e59cda

View File

@ -208,7 +208,7 @@ func getIntersectionNode(headA, headB *ListNode) *ListNode {
}
```
递归版本:
双指针
```go
func getIntersectionNode(headA, headB *ListNode) *ListNode {