Skip to content

Instantly share code, notes, and snippets.

@TheNova22
Last active October 7, 2020 05:12
Show Gist options
  • Save TheNova22/fd975424194870a2928bfc712f816009 to your computer and use it in GitHub Desktop.
Save TheNova22/fd975424194870a2928bfc712f816009 to your computer and use it in GitHub Desktop.
Readline Operations
// vim: syntax=swift
let line = Int(readLine()!)!
let line1 = readLine()!.split(separator: " ").map{ Int(String($0))! }
let numbers = readLine()!.components(separatedBy: [" "]).map { Int($0)! }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment