c_cpp 657.机器人返回原点

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 657.机器人返回原点相关的知识,希望对你有一定的参考价值。

//Runtime: 20 ms, faster than 82.01%

class Solution {
public:
    bool judgeCircle(string moves) {
        int num1 = 0,num2 = 0;
        
        for(int i = 0;i < moves.length();++i){
            switch(moves[i]){
                case 'U' : num1++; break;
                case 'D' : num1--; break;
                case 'L' : num2++; break;
                case 'R' : num2--; break;
                default  : num1 = 0,num2 = 0;
            }
        }
        return num1 == 0 && num2 == 0;
    }
};

以上是关于c_cpp 657.机器人返回原点的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode | 机器人能否返回原点

c_cpp 657.cpp

力扣——机器人能否返回原点

LeetCode --- 字符串系列 --- 机器人能否返回原点

319机器人能否返回原点

3638机器人能否返回原点