Created
December 9, 2016 10:52
-
-
Save shahamit/f993e08e0601ff024f7a64ad39139470 to your computer and use it in GitHub Desktop.
Flatten arbitrarily nested arrays
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static Integer[] flatten(Object[] inputArray) throws IllegalArgumentException { | |
if (inputArray == null) return null; | |
List<Integer> flatList = new ArrayList<Integer>(); | |
for (Object element : inputArray) { | |
if (element instanceof Integer) { | |
flatList.add((Integer) element); | |
} else if (element instanceof Object[]) { | |
flatList.addAll(Arrays.asList(flatten((Object[]) element))); | |
} else { | |
throw new IllegalArgumentException("Input must be an array of Integers or nested arrays of Integers"); | |
} | |
} | |
return flatList.toArray(new Integer[flatList.size()]); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment