/* function ListNode(x){ this.val = x; this.next = null; } */ /** * 【简单】 两个链表的第一个公共结点 * @param pHead1 * @param pHead2 * @constructor */ function findFirstCommonNode(pHead1, pHead2) { // write code here } module.exports = { findFirstCommonNode, }