You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you would like to be provided with a 10x10 board instead of the default 8x8 board, you can add a <code>uses_10x10_board</code> variable to your strategy class.
98
-
This variable works the same way as the <code>logging</code> variable, in that it must be an attribute of the <code>Strategy</code> class and will default to <code>False</code> if omitted.
98
+
This will surround the 8x8 board with an additional layer of <code>'?'</code> characters, as shown below.
99
+
Similar to the <code>logging</code> variable, <code>uses_10x10_board</code> must be an attribute of the <code>Strategy</code> class and will default to <code>False</code> if omitted.
99
100
</p>
100
101
<p>
101
-
You can also use a similar <code>uses_10x10_moves</code> variable to signify that your submitted <code>best_move.value</code> refers to indices in this 10x10 board.
102
-
If not used, the server will assume that your <code>best_move.value</code> refers to indices in the default 8x8 board.
102
+
You can also use the <code>uses_10x10_moves</code> variable to signify that your submitted <code>best_move.value</code> refers to indices in this 10x10 board representation.
103
+
If not used, the server will assume that your <code>best_move.value</code> refers to indices in the default 8x8 board, irrespective of whether or not <code>uses_10x10_board</code> is enabled.
0 commit comments