(84)657. Can the robot return to the origin (leetcode)

题目链接:
https://leetcode-cn.com/problems/robot-return-to-origin/
难度:简单	
657. 机器人能否返回原点
	在二维平面上,有一个机器人从原点 (0, 0) 开始。
给出它的移动顺序,判断这个机器人在完成移动后是否在 (0, 0) 处结束。
	移动顺序由字符串表示。字符 move[i] 表示其第 i 次移动。机器人的有效动作有 R(右),L(左),U(上)和 D(下)。
如果机器人在完成所有动作后返回原点,则返回 true。否则,返回 false。
	注意:机器人“面朝”的方向无关紧要。 “R” 将始终使机器人向右移动一次,“L” 将始终向左移动等。
此外,假设每次移动机器人的移动幅度相同。

Is this still a question for a simple batch? . But it’s okay to have a headache

class Solution {
    
    
public:
    bool judgeCircle(string moves) {
    
    
        int x=0;
        int y=0;
        for(const auto &c:moves){
    
    
            if(c=='R'){
    
    
                x++;
            }else if(c=='L'){
    
    
                x--;
            }else if(c=='U'){
    
    
                y++;
            }else{
    
    
                y--;
            }
        }
        return x==0&&y==0;
    }
};

Guess you like

Origin blog.csdn.net/li_qw_er/article/details/108280008