MCPcopy Create free account
hub / github.com/ndleah/python-mini-project / TieGame

Function TieGame

Tic_Tac_Toe/tic_tac_toe.py:120–125  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

118
119#check Tie Game condition
120def TieGame():
121
122 if isBoardFull(board) and (not((IsWinner(board, 'X')) or (IsWinner(board, 'O')))):
123 return True
124 else:
125 return False
126
127#Score Count
128scorecount = 0

Callers 1

tic_tac_toe.pyFile · 0.85

Calls 2

isBoardFullFunction · 0.85
IsWinnerFunction · 0.85

Tested by

no test coverage detected