You are viewing a single comment's thread. Return to all comments →
This challenge problem is bit tricky.
def pokerNim(k, c): a = 0 for i in c: a ^= i if a: return "First" return "Second"
Seems like cookies are disabled on this browser, please enable them to open this website
Poker Nim
You are viewing a single comment's thread. Return to all comments →
This challenge problem is bit tricky.