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