zoukankan      html  css  js  c++  java
  • 657. Robot Return to Origin

    Description

    There is a robot starting at position (0, 0), the origin, on a 2D plane. Given a sequence of its moves, judge if this robot ends up at (0, 0) after it completes its moves.

    The move sequence is represented by a string, and the character moves[i] represents its ith move. Valid moves are R (right), L (left), U (up), and D (down). If the robot returns to the origin after it finishes all of its moves, return true. Otherwise, return false.

    Note: The way that the robot is "facing" is irrelevant. "R" will always make the robot move to the right once, "L" will always make it move left, etc. Also, assume that the magnitude of the robot's movement is the same for each move.

    Example:

    Input: "UD"
    Output: true 
    Explanation: The robot moves up once, and then down once. All moves have the same magnitude, so it ended up at the origin where it started. Therefore, we return true.
    

    分析:

    1. 设置x = 0, y = 0;
    2. 一次检查每一个字符,分别改变x,y的值
    3. 最后查看x、y是否都是0
    class Solution {
        public boolean judgeCircle(String moves) {
            Robot r = new Robot();
            char[] chars = moves.toCharArray();
            for(char c: chars){
                if(c == 'R') r.x++;
                else if(c == 'L') r.x--;
                else if(c == 'U') r.y++;
                else r.y--;
            }
            
            if(r.x == 0 && r.y == 0) return true;
            else return false;
            
        }
        
        class Robot{
            int x;
            int y;
            public Robot(){
                this.x = 0;
                this.y = 0;
            }
        }
    }
    
  • 相关阅读:
    js 和 jquery的宽高
    client、offset、scroll
    web开发中会话跟踪的方法有哪些
    前端需要注意哪些SEO
    ES6 Set和Map数据结构
    ES6实现数组去重
    ES6 Symbol
    ES6对象的拓展
    ES6数组的拓展
    ES6函数的拓展
  • 原文地址:https://www.cnblogs.com/zhuobo/p/10602840.html
Copyright © 2011-2022 走看看