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