Skip to content

Instantly share code, notes, and snippets.

@cemolcay
Created August 14, 2017 21:59
Show Gist options
  • Save cemolcay/8d408e0ded9263e31aa10b4cc358311b to your computer and use it in GitHub Desktop.
Save cemolcay/8d408e0ded9263e31aa10b4cc358311b to your computer and use it in GitHub Desktop.
hackerrank swift input reader
import Foundation
var input = [[Int]]()
while let line = readLine() {
input.append(line.components(separatedBy: [" "]).map { Int($0)! })
}
print(input)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment