Skip to content

Instantly share code, notes, and snippets.

@moaible
Last active February 15, 2018 22:43
Show Gist options
  • Select an option

  • Save moaible/bdf9c5627947561a572f9432c8350ffe to your computer and use it in GitHub Desktop.

Select an option

Save moaible/bdf9c5627947561a572f9432c8350ffe to your computer and use it in GitHub Desktop.
Competitive Swift Codes
func readLines() -> [String] {
var results = [String]()
while(true) {
guard let readLine = readLine() else {
break
}
results.append(readLine)
}
return results
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment