/array-flattener

This project will flatten an array of arbitrarily nested arrays of integers into a flat array of integers.

Primary LanguageJava

array-flattener

This project 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]

Build & Run

mvn clean install