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