Move the elf to collect the lollipops and get to the KingleCon entrance
Hint
The elf.moveTo function should help reduce the number of elf move function calls, if used properly.
The code I was presented with...
1 2 3 4 5 6 7 8 910
importelf,munchkins,levers,lollipops,yeeters,pits# Gets all lollipops as a listall_lollipops=lollipops.get()# Can set lollipop1 using:lollipop1=all_lollipops[1]# Can also set lollipop0 using:lollipop0=lollipops.get(0)# or:lollipop0=all_lollipops[1]elf.moveTo(lollipop1.position)