Skip to content

Instantly share code, notes, and snippets.

View chadsteele's full-sized avatar

chad steele chadsteele

View GitHub Profile
/*
Assignment...
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].
Your solution should be a link to a gist on gist.github.com with your implementation.
When writing this code, you can use any language you're comfortable with. The code must be well tested and documented
if necessary, and in general please treat the quality of the code as if it was ready to ship to production.