combined
stringlengths 168
797
|
---|
###input: Player鈥檚 tiles: [0|2], [1|3], [3|6], [6|6], [3|5], [0|0], [3|3]. Which tile he should play to start? ###output: Player should play [6|6] since it鈥檚 his highest double and he has other 6. |
###input: Game progress: Player 1 played [6|6] Player 2 played [2|6] Player 3 played [0|6] Player 4 played [2|2]. Board State: 0,2. Player 1 tiles: [0|2], [1|3], [3|6], [3|5], [0|0], [3|3]. Given the current board state and Player 1鈥檚 tiles, which tile should he play and why? ###output: Player 1 should play [0|0]. This way you do not alter the game in a way that could affect you in the future. |
###input: Game progress: Player 1 played [6|6] Player 2 played [2|6] Player 3 played [0|6] Player 4 played [2|2] Player 1 played [0|0] Player 2 played [2|3] Player 3 played [0|3] Player 4 [PASSED] Player 1 played [0|2] Player 2 played [0|1] Player 3 played [1|2] Player 4 played [2|4] Player 1 [PASSED] Player 2 played [0|4] Player 3 played [0|5] Player 4 played [1|5] Player 1 played [1|3] Player 2 played [3|4] Player 3 played [1|4] Player 4 played [1|6] Player 1 played [3|6] Player 2 played [2|5] Player 3 played [5|6] Player 4 played [4|6].Board State: 4,3.Player 1 tiles: [3|5], [3|3].Given the current board state and Player 1鈥檚 tiles, which tile should he play and why? ###output: Player 1 should play [3|3]. This way you do not alter the game in a way that could affect you in the future. |
###input: Game progress: Player 1 played [6|6] Player 2 played [2|6] Player 3 played [0|6] Player 4 played [2|2] Player 1 played [0|0] Player 2 played [2|3] Player 3 played [0|3] Player 4 [PASSED] Player 1 played [0|2] Player 2 played [0|1] Player 3 played [1|2] Player 4 played [2|4] Player 1 [PASSED] Player 2 played [0|4] Player 3 played [0|5] Player 4 played [1|5] Player 1 played [1|3] Player 2 played [3|4] Player 3 played [1|4] Player 4 played [1|6] Player 1 played [3|6] Player 2 played [2|5] Player 3 played [5|6] Player 4 played [4|6].Board State: 4,3.Player 1 tiles: [3|5], [3|3].Given the current board state and Player 1鈥檚 tiles, which tile should he play and why? ###output: Player 1 should play [3|5]. This can help his partner to win since he only has one tile left. |