Created
January 14, 2020 14:25
-
-
Save AppleCEO/367b398e73387cec43fc71cb87431ee0 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
| func solution(_ num:Int) -> String { | |
| return num%2 == 0 ? "Even" : "Odd" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment