Place the letter on the board at the given position.
(board: List[str], letter: str, move: int)
| 66 | |
| 67 | |
| 68 | def make_move(board: List[str], letter: str, move: int) -> None: |
| 69 | """Place the letter on the board at the given position.""" |
| 70 | board[move] = letter |
| 71 | |
| 72 | |
| 73 | def is_winner(board: List[str], le: str) -> bool: |
no outgoing calls
no test coverage detected