123456789101112131415161718192021222324 |
- def turn_right():
- turn_left()
- turn_left()
- turn_left()
-
- move()
- move()
- turn_left()
- move()
- move()
- turn_right()
- move()
- take()
- turn_left()
- turn_left()
- move()
- move()
- turn_left()
- move()
- put()
- ################################################################
- # WARNING: Do not change this comment.
- # Library Code is below.
- ################################################################
|