/* * function ListNode(x){ * this.val = x; * this.next = null; * } */ /** * @param head ListNode类 the head node * @return ListNode类 */ function sortInList(head) { // write code here } module.exports = { sortInList, }