Skip to content

Instantly share code, notes, and snippets.

@ecerney
Created July 29, 2014 05:36
Show Gist options
  • Save ecerney/c423d2955436cd147184 to your computer and use it in GitHub Desktop.
Save ecerney/c423d2955436cd147184 to your computer and use it in GitHub Desktop.
//Challenge 5
func reverseString(string: String) -> String {
return string.isEmpty ? "" : string.substringFromIndex(string.endIndex.predecessor()) +
reverseString(string.substringToIndex(string.endIndex.predecessor()))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment