Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Golf, lambda => 74 chars solution in Creative category for Flatten a List by Ylliw
f=flat_list=lambda a:[e for x in a for e in([x]if type(x)==int else f(x))]
April 12, 2019