这道题唯一可能存在的难点就是如何判断是不是合法的坐标 let list=['A','D','W','S'] console.log(readline().split(';').reduce((pre,cur)=>{ if(cur.length==2&&list.indexOf(cur[0])>=0&&!isNaN(cur[1])){ return move(pre,cur[0],parseInt(cur[1])) }else if(cur.length==3&&list.indexOf(cur[0])&...