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 trueInput: “LL"Output: falseExplanation: 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’};