Skip to content

Instantly share code, notes, and snippets.

@parcar
Created August 26, 2019 21:12
Show Gist options
  • Select an option

  • Save parcar/ed3067b0dd8ab568fa05628f353f55a7 to your computer and use it in GitHub Desktop.

Select an option

Save parcar/ed3067b0dd8ab568fa05628f353f55a7 to your computer and use it in GitHub Desktop.
class Solution(object):
def canWinNim(self, n):
"""
:type n: int
:rtype: bool
"""
return n % 4
'''
Runtime: 8 ms, faster than 96.34% of Python online submissions for Nim Game.
Memory Usage: 11.5 MB, less than 100.00% of Python online submissions for Nim Game.
'''
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment