Repeat (Part 2)

The Repeat challenges can be hard to do, and it gets even harder when you need to use more than one loop.

Best way to solve these challenges, would be to first solve it without loops.

Example (Loop in Loop)

Let's start by moving forward 4 times, then turning left...

We'll need to repeat this 3 times, so we'll put it in a repeat 3 loop...

...but that's still too many blocks! Can we reduce it further?

Notice that the Move Forward block is repeated 4 times? We can change that into...

IMPORTANT!

Loops Challenge 1

Loops Challenge 2

Loops Challenge 3

Loops Challenge 4

Loops Challenge 5

Loops Challenge 6

Loops Challenge 7