Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Using sum solution in Creative category for Follow Instructions by erykcoapl
def follow(instructions):
return tuple(map(sum, zip(*[(('r' == i) - ('l' == i), ('f' == i) - ('b' == i)) for i in instructions])))
March 15, 2021
Comments: