/* function ListNode(x){ this.val = x; this.next = null; } */ export function reverseList(pHead) { console.log(pHead) }