码迷,mamicode.com
首页 > 其他好文 > 详细

657. Robot Return to Origin

时间:2019-02-28 10:37:41      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:false   bool   3.1   als   python   def   highlight   pre   ret   

class Solution:
    def judgeCircle(self, moves: str) -> bool:
        u,d,l,r = 0,0,0,0
        for move in moves:
            if move is ‘U‘:
                u += 1
            elif move is ‘D‘:
                d += 1
            elif move is ‘L‘:
                l += 1
            elif move is ‘R‘:
                r += 1
        if u!=d or l!=r:
            return False
        return True

  76ms,13.1M

657. Robot Return to Origin

标签:false   bool   3.1   als   python   def   highlight   pre   ret   

原文地址:https://www.cnblogs.com/accumulationbystep/p/10448572.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!