Skip to content

Latest commit

 

History

History
38 lines (21 loc) · 587 Bytes

ReeborgMaze.md

File metadata and controls

38 lines (21 loc) · 587 Bytes
def turn_right():
    turn_left()
    turn_left()
    turn_left()

def jump():
    turn_left()
    move()
    turn_right()
    
while not at_goal():
    if right_is_clear():
        turn_right()
        move()
    elif front_is_clear():
        move()
    else:
        turn_left()

image

attempt to win:

Reeborg.s.World.-.Google.Chrome.2024-03-24.18-45-57.mp4