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

LeetCode 292 Nim Game

时间:2016-08-18 23:00:02      阅读:252      评论:0      收藏:0      [点我收藏+]

标签:

这道题并不能显示出Python的强大,仅仅作为练手吧

class Solution(object):
    def canWinNim(self, n):
        """
        :type n: int
        :rtype: bool
        """
        # if the number can be divided by 4, first hand will lose anyway
        return n % 4 != 0;

  

LeetCode 292 Nim Game

标签:

原文地址:http://www.cnblogs.com/wenchan/p/5785499.html

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