Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Codespace stunning broccoli 4jgrj9wwgpjrc55p4 #1235

Closed
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 35 additions & 3 deletions src/main/java/core/basesyntax/RobotRoute.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,39 @@
package core.basesyntax;

public class RobotRoute {
public class RobotRoute {
public void moveRobot(Robot robot, int toX, int toY) {
//write your solution here
if (robot.getX() > toX) {
while (robot.getDirection() != Direction.LEFT) {
robot.turnLeft();
}
while (robot.getX() > toX) {
robot.stepForward();
}
}
if (robot.getX() < toX) {
while (robot.getDirection() != Direction.RIGHT) {
robot.turnRight();
}

while (robot.getX() < toX) {
robot.stepForward();
}
}
if (robot.getY() > toY) {
while (robot.getDirection() != Direction.DOWN) {
robot.turnLeft();
}
while (robot.getY() > toY) {
robot.stepForward();
}
}
if (robot.getY() < toY) {
while (robot.getDirection() != Direction.UP) {
robot.turnLeft();
}
while (robot.getY() < toY) {
robot.stepForward();
}
}
}
}
}
Loading