Created
March 5, 2020 13:50
-
-
Save denistsyplakov/037eee0733644a0e186eecdd14108971 to your computer and use it in GitHub Desktop.
Решение
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import raccoon | |
raccoon.goRight(2) | |
#add your code here | |
raccoon.goUp() | |
while raccoon.look(1, -1) or raccoon.look(1, 0): | |
raccoon.wait() | |
raccoon.goRight(3) | |
while raccoon.look(1, -1) or raccoon.look(1, 0): | |
raccoon.wait() | |
raccoon.goRight() | |
raccoon.goUp(2) | |
raccoon.goRight() | |
raccoon.goUp(2) | |
while raccoon.look(-1, -1) or raccoon.look(-1, 0) or raccoon.look(-1, 1): | |
raccoon.wait() | |
raccoon.goLeft() | |
raccoon.goUp() | |
raccoon.goLeft(2) | |
raccoon.goDown(2) | |
while raccoon.look(-1, 0) or raccoon.look(-1, 1): | |
raccoon.wait() | |
raccoon.goLeft(3) | |
raccoon.goUp(2) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment