export function ListNode(x) { this.val = x this.next = null } export function EntryNodeOfLoop(pHead) { console.log(pHead) }