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