Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 2

while(frontIsClear()) {

moveToRightCorner();

moveToLeftCorner();

if(frontIsClear()) {

moveToNextLine();

private void moveToRightCorner() {

while (frontIsClear()) {

if(noBeepersPresent()) {

putBeeper();

move();

if (noBeepersPresent()) {

putBeeper();

private void moveToLeftCorner() {

turnAround();

while(frontIsClear()) {

move();

if (frontIsBlocked()) {

turnRight();

}
}

private void moveToNextLine() {

move();

turnRight();

You might also like