# -*- coding:utf-8 -*- # class ListNode: # def __init__(self, x): # self.val = x # self.next = None class Solution: """ # 方法一,利用两个栈 def FindFirstCommonNode(self, pHead1, pHead2): # write code here stack1 = [] stack2 = [] ...