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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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