本文主要是介绍LeetCode 657. Judge Route Circle(water),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
描述
给定一个字符串,判断这个机器人是否按字符串走了一圈之后回到原地,其中R代表向左走,L代表向右走,U向上走,D向下走。
Example 1:
Input: “UD”
Output: true
Example 2:
Input: “LL”
Output: false
code
bool judgeCircle(string moves)
{int res1 = 0, res2 = 0;for (int i = 0; i < moves.length(); i++){if (moves[i] == 'U')res1++;else if (moves[i] == 'D')res1--;else if (moves[i] == 'L')res2--;else if (moves[i] == 'R')res2++;}if (!res1 && !res2)return true;elsereturn false;
}
这篇关于LeetCode 657. Judge Route Circle(water)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!