Skip to content

Instantly share code, notes, and snippets.

@wotjd
Last active July 22, 2019 09:02
Show Gist options
  • Save wotjd/79d15e39a6ce797b5e6ad0c678fece43 to your computer and use it in GitHub Desktop.
Save wotjd/79d15e39a6ce797b5e6ad0c678fece43 to your computer and use it in GitHub Desktop.
let intArray = [[1,2],[3,4],[5]]
var flatMapResult = intArray.flatMap { $0 }
print(flatMapResult) // [1,2,3,4,5]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment