Skip to content

Latest commit

 

History

History
3 lines (2 loc) · 154 Bytes

flatten_an_array.md

File metadata and controls

3 lines (2 loc) · 154 Bytes

Write some code, that will flatten an array of arbitrarily nested arrays of integers into a flat array of integers.

e.g. [[1,2,[3]],4] -> [1,2,3,4]