if competitors send an empty list of actions they can crash our game since in submit_turn() under game.py we have the following two lines:
assert len(p1_actions) == NUM_BOTS
assert len(p2_actions) == NUM_BOTS
we should change these lines from asserts to raising errors to the competitor if they submit the wrong number of actions
if competitors send an empty list of actions they can crash our game since in submit_turn() under game.py we have the following two lines:
we should change these lines from asserts to raising errors to the competitor if they submit the wrong number of actions