题解 | #坐标移动#

坐标移动

http://www.nowcoder.com/practice/119bcca3befb405fbe58abe9c532eb29

let directives = readline().split(';');
// 指令校验表达式
const reg = /^[ADWS](?:[0-9]|[1-9][0-9]{1})$/;
// 保留有效的指令
directives = directives.filter(d => {
  return reg.test(d);
});
// 坐标[x, y]
const coord = [0, 0];
function directExecutor(d) {
  const reg = /^([ADWS])([0-9]|[1-9][0-9]{1})$/;
  const [, direction, step] = reg.exec(d);
  switch(direction) {
    case 'A':
      coord[0] -= Number.parseInt(step, 10);
      break;
    case 'D':
      coord[0] += Number.parseInt(step, 10);
      break;
    case 'W':
      coord[1] += Number.parseInt(step, 10);
      break;
    case 'S':
      coord[1] -= Number.parseInt(step, 10);
      break;
  }
}
directives.forEach(d => {
  directExecutor(d);
});

console.log(`${coord[0]},${coord[1]}`);

全部评论

相关推荐

vegetable_more_exercise:1-1.5万,没错啊,最少是1人民币,在区间内
点赞 评论 收藏
分享
10-24 13:36
门头沟学院 Java
Zzzzoooo:更新:今天下午有hr联系我去不去客户端,拒了
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务