1. 程式人生 > >LeetCode657-機器人能否返回原點(智力題)

LeetCode657-機器人能否返回原點(智力題)

只要向左走的步數和向右走,向上和向下的步數一樣就可以了。抵消

 

/**
 * @param {string} moves
 * @return {boolean}
 */
var judgeCircle = function(moves) {
    
    let R = 0;
    let L = 0;
    let U = 0;
    let D = 0;
    
    for(let item of moves){
        if(item==='R'){
            R++;
        }else if(item==='L'){
            L
++; }else if(item==='U'){ U++; }else{ D++; } } if(R===L&&U===D){ return true; }else{ return false; } };