终于跑过了,烦死了,他们样例里面的输入跟最终测试集的输入格式不一样!!!! function ListNode(value) { this.value = value; this.next = null; } function reader(str) { let i = 0; let lineStrs = str.split(' '); return function() { return Number.parseInt(lineStrs[i++]); }; } let result = ''; let line; let f...