There was an error while loading. Please reload this page.
1 parent 4572475 commit 0de94d3Copy full SHA for 0de94d3
Blogs/MyJourney
src/main/java/main/java/codingame/TicTacToe/TicTacToe.java
@@ -20,6 +20,7 @@ public static void main(String args[]) throws IOException {
20
if (algorithm.root.getChild(opponentMove) == null) {
21
algorithm.root.expand(largeBoard, opponentMove);
22
}
23
+ //todo: Fails sometimes? Occupied is full then
24
largeBoard.play(2, opponentMove);
25
algorithm.root = algorithm.root.getChild(opponentMove);
26
algorithm.root.parent = null;
0 commit comments