在二维平面上,有一个机器人从原点 (0, 0) 开始.给出它的移动顺序,判断这个机器人在完成移动后是否在 (0, 0) 处结束. 移动顺序由字符串表示.字符 move[i] 表示其第 i 次移动.机器人的有效动作有 R(右),L(左),U(上)和 D(下).如果机器人在完成所有动作后返回原点,则返回 true.否则,返回 false. 注意:机器人"面朝"的方向无关紧要. "R" 将始终使机器人向右移动一次,"L" 将始终向左移动等.此外,假设每…
https://leetcode-cn.com/problems/robot-return-to-origin/ 设置 flagUD 记录机器人相对于原点在纵向上的最终位置 flagRL 记录机器人相对于原点在横向上的最终位置 如果最终 flagUD==0 && flagRL==0 ,说明机器人的最终位置与原点相同 class Solution { public boolean judgeCircle(String moves) { int flagRL = 0; int flagUD =…
Algorithm [leetcode]657. Robot Return to Origin https://leetcode.com/problems/robot-return-to-origin/ 1)problem 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,…
977. Squares of a Sorted Array (Easy)# Given an array of integers A sorted in non-decreasing order, return an array of the squares of each number, also in sorted non-decreasing order. Example 1: Input: [-4,-1,0,3,10] Output: [0,1,9,16,100] Example 2:…
problem 657. Robot Return to Origin 题意: solution1: class Solution { public: bool judgeCircle(string moves) { , cnt2 = ; for(auto move:moves) { if(move == 'L') cnt1++; else if(move=='R') cnt1--; else if(move=='U') cnt2++; else if(move=='D') cnt2--; }…
放假的时间已经过去一半了,每天坚持看一个多小时的书,时间虽然不多,但是能专心把书看进去就可以了.今天分享的是 LeetCode 上面的第 657 题,题目是<机器人能否返回原点>,这也是一道简单的题. LeetCode 题库的第 657 题——机器人能否返回原点 题的解法也很简单,先定义坐标,并设置坐标为(0, 0),然后按照给定的方向去移动,在移动的过程中修改方向,移动完以后再次判断坐标是否为(0, 0)即可.代码如下: bool judgeCircle(char* moves) { ; ;…
657. 机器人能否返回原点 在二维平面上,有一个机器人从原点 (0, 0) 开始.给出它的移动顺序,判断这个机器人在完成移动后是否在 (0, 0) 处结束. 移动顺序由字符串表示.字符 move[i] 表示其第 i 次移动.机器人的有效动作有 R(右),L(左),U(上)和 D(下).如果机器人在完成所有动作后返回原点,则返回 true.否则,返回 false. 注意:机器人"面朝"的方向无关紧要. "R" 将始终使机器人向右移动一次,"L"…
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] repre…
问题 该文章的最新版本已迁移至个人博客[比特飞],单击链接 https://www.byteflying.com/archives/3959 访问. 在二维平面上,有一个机器人从原点 (0, 0) 开始.给出它的移动顺序,判断这个机器人在完成移动后是否在 (0, 0) 处结束. 移动顺序由字符串表示.字符 move[i] 表示其第 i 次移动.机器人的有效动作有 R(右),L(左),U(上)和 D(下).如果机器人在完成所有动作后返回原点,则返回 true.否则,返回 false. 注意:机器人…
题目要求 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]…