1. 程式人生 > >leetcode - 657 - 機器人能否返回原點

leetcode - 657 - 機器人能否返回原點

class Solution:
    def judgeCircle(self, moves):
        """
        :type moves: str
        :rtype: bool
        """
        m=moves.count("U")
        n=moves.count("D")
        j=moves.count("L")
        k=moves.count("R")
        
        return m==n and j==k