Skip to content

Instantly share code, notes, and snippets.

@czars
Created June 2, 2017 02:23
Show Gist options
  • Save czars/c1af28445351fea568bbcc851825a7b9 to your computer and use it in GitHub Desktop.
Save czars/c1af28445351fea568bbcc851825a7b9 to your computer and use it in GitHub Desktop.
import Foundation
// number of elements
let n = Int(readLine()!)!
// read array and map the elements to integer
let arr = readLine()!.components(separatedBy: " ").map{ Int($0)! }
//edit if any other requirement
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment