U E D R , A S I H C RSS

데블스캠프2011/셋째날/RUR-PLE/변형진

harvest1.wld

def harvest():
    move()
    pick_beeper()
    
def harvest_row(num):
    repeat(harvest, num)
    turn_left()

harvest_row(6)
for num in [5,4,3,2,1]:
    harvest_row(num)
    harvest_row(num)
turn_off()

trash1.wld

def harvest():
    while front_is_clear():
        move()
        while on_beeper():
            pick_beeper()
            
harvest()
repeat(turn_left, 2)
harvest()
repeat(turn_left, 3)
move()
while carries_beepers():
    put_beeper()
turn_off()

maze.wld

while not on_beeper():
    repeat(turn_left, 3)
    while not front_is_clear():
        turn_left()
    move()
turn_off()
Valid XHTML 1.0! Valid CSS! powered by MoniWiki
last modified 2021-02-07 05:29:13
Processing time 0.0076 sec