↓ 6 callersFunctionis_space_free Return True if a position on the board is free. >>> is_space_free([' ', 'X',' ',' ',' ',' ',' ',' ',' ',' '], 1) False >>> is_space_
Tic-Tac-Toe Games/tic-tac-toe5.py:99
↓ 5 callersMethod__init__(self, optimizer, max_lr, total_steps, pct_start=0.3, anneal_strategy='cos',
div_factor=25.0,
ML/src/python/neuralforge/optim/schedulers.py:68
↓ 5 callersFunctiondraw_button(text, font, text_col, button_col, x, y, width, height)
Street_Fighter/src/main.py:122
↓ 4 callersFunctionis_winner Return True if the given letter has won the game. >>> is_winner([' ', 'X','X','X',' ',' ',' ',' ',' ',' '], 'X') True >>> is_winner(
Tic-Tac-Toe Games/tic-tac-toe5.py:73