classSolution:defjudgeCircle(self, moves:str)->bool:
U = moves.count('U')
D = moves.count('D')
R = moves.count('R')
L = moves.count('L')if U == D and R == L:returnTruereturnFalse# 执行用时:36 ms, 在所有 Python3 提交中击败了98.99%的用户# 内存消耗:13.5 MB, 在所有 Python3 提交中击败了94.54%的用户