Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
two solutions solution in Clear category for Easy Unpack by Phil15
easy_unpack = lambda elements: (elements[0], elements[2], elements[-2])
def easy_unpack(elements):
zero, _, two, *_ = *_, right_two, _ = elements
return (zero, two, right_two)
Nov. 4, 2018