6leetcode機器移動

4次阅读

共计 1348 个字符,预计需要花费 4 分钟才能阅读完成。

1 題目
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
## 2. 示例
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
Input: “LL”
Output: false
Explanation: The robot moves left twice. It ends up two “moves” to the left of the origin. We return false because it is not at the origin at the end of its moves.
2. 解答
var judgeCircle = function(moves) {
let x = 0, y = 0;
for (let move of moves) {
switch(move) {
case ‘U’: y++ ;break;
case ‘D’: y– ;break;
case ‘L’: x– ;break;
case ‘R’: x++ ;break;
}
}
return x === 0 && y === 0
};
Runtime: 68 ms, faster than 86.60% of JavaScript online submissionsfor Robot Return to Origin. Memory Usage: 36.7 MB, less than 40.71% ofJavaScript online submissions for Robot Return to Origin.
3. 其他解法
const judgeCircle = (moves) => {
return moves.split(”)
.reduce((p, m) => [p[0] + (m === ‘R’) – (m === ‘L’), p[1] + (m === ‘U’) – (m === ‘D’)], [0, 0])
.join(”) === ’00’
};

正文完
 0