7 BILLION HUMANS

Level 12: Unzip

Shortest Program

-- 7 Billion Humans (2144) --
-- Level 12: Unzip --
-- Shortest Program: 8 Commands --
pickup c
a:
if w == wall or
 sw == datacube or
 se == datacube:
    step n
    drop
endif
if e == wall or
 nw == datacube or
 ne == datacube:
    step s
    drop
endif
jump a

Fastest Program

-- 7 Billion Humans (2144) --
-- Level 12: Unzip --
-- Fastest Program: 5 Seconds --
pickup c
if e == wall:
    jump a
endif
if w == wall:
    jump b
endif
c:
if sw == worker or
 se == worker:
    b:
    step n
    jump d
else:
    if nw == worker or
     ne == worker:
        a:
        step s
        jump e
    endif
endif
jump c
d:
e:
drop
Back