Last active
February 15, 2018 22:43
-
-
Save moaible/bdf9c5627947561a572f9432c8350ffe to your computer and use it in GitHub Desktop.
Competitive Swift Codes
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
| 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