12345678910111213141516171819 |
- def do_robin():
- if object_here():
- take()
- else:
- put()
-
- while front_is_clear():
- do_robin()
- move()
- do_robin()
-
-
- ################################################################
- # WARNING: Do not change this comment.
- # Library Code is below.
- ################################################################
- def turn_around():
- turn_left()
- turn_left()
|