Update 面试题02.07.链表相交.md
This commit is contained in:
parent
730f58bcce
commit
26f5e59cda
|
|
@ -208,7 +208,7 @@ func getIntersectionNode(headA, headB *ListNode) *ListNode {
|
|||
}
|
||||
```
|
||||
|
||||
递归版本:
|
||||
双指针
|
||||
|
||||
```go
|
||||
func getIntersectionNode(headA, headB *ListNode) *ListNode {
|
||||
|
|
|
|||
Loading…
Reference in New Issue