Created
June 2, 2017 02:23
-
-
Save czars/c1af28445351fea568bbcc851825a7b9 to your computer and use it in GitHub Desktop.
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
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