Skip to content

Instantly share code, notes, and snippets.

@stevenabrooks
Last active December 18, 2015 15:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stevenabrooks/5805020 to your computer and use it in GitHub Desktop.
Save stevenabrooks/5805020 to your computer and use it in GitHub Desktop.
def reverse_each_word(sentence)
sentence.split.collect { |word| word.reverse }.join(" ")
end
puts reverse_each_word("Hello world")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment