summaryrefslogtreecommitdiff
path: root/bots.py
blob: cf23602613958e5b79abf81439397265f4cb4146 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import random

def random_bot(board, (x, y)):
    height = len(board)
    width = len(board[0])
    moves = []
    if x > 0:
        moves.append('L')
    if x < width - 1:
        moves.append('R')
    if y > 0:
        moves.append('U')
    if y < height - 1:
        moves.append('D')
    return random.choice(moves)