initial commit

This commit is contained in:
2025-11-16 16:00:45 +01:00
commit 3a4a06fd9f
14 changed files with 1094 additions and 0 deletions

View File

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