Friday, April 11, 2014

Day 6

Completed all 11 puzzles on Stage 8. This was the last lines of code I wrote today.

while (isPathForward()) {
  moveForward();
  if (pilePresent()) {
    dig();
  }
  if (holePresent()) {
    fill();
  }
}

No comments:

Post a Comment