fork download
  1. def task_6_6():
  2. move_right()
  3. while True:
  4. if not wall_is_above():
  5. while not wall_is_above():
  6. move_up()
  7. fill_cell()
  8. while not wall_is_beneath():
  9. move_down()
  10. if wall_is_on_the_right():
  11. break
  12. move_right()
  13. while wall_is_beneath():
  14. move_left()
Success #stdin #stdout 0.02s 9072KB
stdin
Standard input is empty
stdout
Standard output is empty