Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
RegEx solution in Clear category for Flatten a List by Pouf
# migrated from python 2.7
import re
flat_list=lambda a:[int(i) for i in re.findall('-?\d+',repr(a))]
Oct. 25, 2014