Skip to content

Instantly share code, notes, and snippets.

@tranhieutt
Created July 4, 2017 07:42
Show Gist options
  • Select an option

  • Save tranhieutt/5e2961dc6bb2329ea8a9c1ae7e4cc273 to your computer and use it in GitHub Desktop.

Select an option

Save tranhieutt/5e2961dc6bb2329ea8a9c1ae7e4cc273 to your computer and use it in GitHub Desktop.
let values = [2.0,4.0,5.0,7.0]
//Normal
var squares: [Double] = []
for value in values {
squares.append(value * value)
}
//Use map
let mapSquare = values.map{$0 * 2}
print(mapSquare)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment