Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Xs and Os Referee - 2 solution in Clear category for Xs and Os Referee by KacperBeisert
resultMap = ((0,1,2),(3,4,5),(6,7,8),(0,3,6),(1,4,7),(2,5,8),(0,4,8),(2,4,6),)
def checkio(game_result):
stringResult = "".join(game_result)
for x,y,z in resultMap:
if stringResult[x].isalpha() and stringResult[x] == stringResult[y] == stringResult[z]:
return stringResult[x]
return "D"
if __name__ == '__main__':
#These "asserts" using only for self-checking and not necessary for auto-testing
assert checkio([
"X.O",
"XX.",
"XOO"]) == "X", "Xs wins"
assert checkio([
"OO.",
"XOX",
"XOX"]) == "O", "Os wins"
assert checkio([
"OOX",
"XXO",
"OXX"]) == "D", "Draw"
assert checkio([
"O.X",
"XX.",
"XOO"]) == "X", "Xs wins again"
Dec. 14, 2015