-
@ alt-1
2025-05-18 08:08:46bruteforcing 9x9 go games lets set some initial constraints const int board_dim = 9; const int min_solutions = 1; const int min_score = 3; we want to generate complete go game with every move, that results to at least score of 3 for both players, but player 1 must win the game. found solution 1 after 287 iterations 111002222 110220022 101002222 010020220 010102001 101110110 010001002 102011010 020200111 player 1 score: 5 player 2 score: 3