mirror of
https://github.com/chefyuan/algorithm-base.git
synced 2025-08-05 07:11:35 +00:00
验证,校对
This commit is contained in:
@@ -115,7 +115,7 @@ var getIntersectionNode = function(headA, headB) {
|
||||
|
||||
Python Code:
|
||||
|
||||
```py
|
||||
```python
|
||||
class Solution:
|
||||
def getIntersectionNode(self, headA: ListNode, headB: ListNode) -> ListNode:
|
||||
tempa = headA
|
||||
@@ -207,7 +207,7 @@ var getIntersectionNode = function(headA, headB) {
|
||||
|
||||
Python Code:
|
||||
|
||||
```py
|
||||
```python
|
||||
class Solution:
|
||||
def getIntersectionNode(self, headA: ListNode, headB: ListNode) -> ListNode:
|
||||
# 定义两个节点
|
||||
|
Reference in New Issue
Block a user