Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae2443d commit df133a4Copy full SHA for df133a4
22_itictactoe/solution1.py
@@ -32,6 +32,7 @@ def main() -> None:
32
print('You lose, loser!')
33
break
34
elif state.winner:
35
+ print(format_board(state.board))
36
print(f'{state.winner} has won!')
37
38
elif state.draw:
22_itictactoe/solution2_typed_dict.py
@@ -37,6 +37,7 @@ def main() -> None:
39
elif state['winner']:
40
+ print(format_board(state['board']))
41
print(f"{state['winner']} has won!")
42
43
elif state['draw']:
0 commit comments