summaryrefslogtreecommitdiff
path: root/bots.py
diff options
context:
space:
mode:
Diffstat (limited to 'bots.py')
-rw-r--r--bots.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/bots.py b/bots.py
new file mode 100644
index 0000000..cf23602
--- /dev/null
+++ b/bots.py
@@ -0,0 +1,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)
+