Skip to content

Instantly share code, notes, and snippets.

View tharun323's full-sized avatar
😎
On vacation

Tharun Kumar Reddy tharun323

😎
On vacation
  • Chennai
View GitHub Profile
@tharun323
tharun323 / gist:59827582ba22a32c2fb72675b380e9aa
Created June 14, 2018 14:43
Code,that will flatten an array of arbitrarily nested arrays of integers into a flat array of integers
flatten = lambda x: [y for l in x for y in flatten(l)] if type(x) is list else [x]
a = [1, 2, [3, 4], [[5, 6], [7, 8]]]
print flatten(a)
# This will print a list [1, 2, 3, 4, 5, 6, 7, 8]