Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for Flatten a List by MagiMaster
def flat_list(array):
out = []
for x in array:
try: out += flat_list(x)
except: out.append(x)
return out
April 24, 2014
Comments: