Files
exercise03/boards/tictactoe_win_5x5.json
2025-11-16 16:00:45 +01:00

11 lines
228 B
JSON

{
"type": "TicTacToe",
"start_state": [
[-1, 0, -1, 1, -1],
[ 1, -1, 1, -1, 1],
[-1, 1, 0, 1, -1],
[ 1, 0, 0, 0, 1],
[-1, 1, 1, 0, -1]
],
"start_player": -1
}