2024每日刷题(121)
Leetcode—1041. 困于环中的机器人
实现代码
class Solution {
public:bool isRobotBounded(string instructions) {int x = 0;int y = 0;int d = 0;vector<vector<int>> direction{{0, 1}, {1, 0}, {0, -1}, {-1, 0}};for(char dir: instructions) {if(dir == 'G') {x += direction[d][0];y += direction[d][1];} else if(dir == 'L') {d = (d + 3) % 4;} else {d = (d + 1) % 4;}}return x == 0 && y == 0 || d > 0;}
};
运行结果
之后我会持续更新,如果喜欢我的文章,请记得一键三连哦,点赞关注收藏,你的每一个赞每一份关注每一次收藏都将是我前进路上的无限动力 !!!↖(▔▽▔)↗感谢支持!