Skip to content

Instantly share code, notes, and snippets.

@manleyhimself
Created September 30, 2013 20:07
Show Gist options
  • Save manleyhimself/6769390 to your computer and use it in GitHub Desktop.
Save manleyhimself/6769390 to your computer and use it in GitHub Desktop.
def reverse_each_word(sentence)
sen_array = sentence.split(" ")
sen_rev = sen_array.map { |word| word.reverse}
sen_rev = sen_rev.join(" ")
end
puts reverse_each_word("Hello there, and how are you?")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment