Maze Challenges

Try using Decomposition to solve these maze challenges!

Example 1

This challenge will be opened in a new tab. Open it, take a look, then switch back to this page.

Open Challenge

Decompose

To solve this maze, we'll need to visit...

  1. Red Box 1
  2. Red Box 2
Your robot will need to stop for 1 second inside each box!

Let's decompose step 1 a little more...

  1. Red Box 1
    1. Turn Right
    2. Move Forward
    3. Stop for 1 second
  2. Red Box 2

Let's write the code for that...

Try out the code!

Now we'll decompose step 2...

  1. Red Box 1
    1. Turn Right
    2. Move Forward 2
    3. Stop for 1 second
  2. Red Box 2
    1. Turn Left
    2. Move Forward
    3. Turn Left
    4. Move Forward
    5. Stop for 1 second

Now it is your turn to code. Add on to your previous code to complete the maze!

Challenges

Now we have a series of challenges for you to try out.

For each challenge, click on the Simulator Tab, then the Mission button to see the mission you need to do.

Follow instructions and note down the special Code after doing the challenge successfully!

Maze Challenge 1

Maze Challenge 2

Maze Challenge 3

Maze Challenge 4

Maze Challenge 5