Take a Ten Minute Walk

题目:

You live in the city of Cartesia where all roads are laid out in a perfect grid. You arrived ten minutes too early to an appointment, so you decided to take the opportunity to go for a short walk. The city provides its citizens with a Walk Generating App on their phones -- everytime you press the button it sends you an array of one-letter strings representing directions to walk (eg. ['n', 's', 'w', 'e']). You always walk only a single block in a direction and you know it takes you one minute to traverse one city block, so create a function that will return true if the walk the app gives you will take you exactly ten minutes (you don't want to be early or late!) and will, of course, return you to your starting point. Return false otherwise.

Note: you will always receive a valid array containing a random assortment of direction letters ('n', 's', 'e', or 'w' only). It will never give you an empty array (that's not a walk, that's standing still!).


FUNDAMENTALS   ARRAYS

刚开始接触codewars,看到题目听懵逼的,参考了别人的写法

function isValidWalk(walk) {
if(walk.length!=10) return false;
let y=0,x=0;
for(let i=0;i<walk.length;i++){
let c = walk[i];
switch(c){
case 'n': x++; break;
case 's': x--; break;
case 'w': y++; break;
case 'e': y--; break;
}
}
if(y==0 && x==0){
return true;
}else{
return false;
}
}

isValidWalk(['n','s','n','s','n','s','n','s','n','s']);

猜你喜欢

转载自www.cnblogs.com/yinghuang/p/12658125.html
TEN
今日推荐