An open API service indexing awesome lists of open source software.

https://github.com/zedd45/bug-free-journey

Code Challenge
https://github.com/zedd45/bug-free-journey

Last synced: 6 months ago
JSON representation

Code Challenge

Awesome Lists containing this project

README

          

# bug-free-journey

The purpose of this code challenge is to write 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]`.