jkaihsu
3/7/2013 - 8:20 AM

Write a method reverse_words which takes a sentence as a string and reverse each word in it.

Write a method reverse_words which takes a sentence as a string and reverse each word in it.

def reverse_words(str)
  words = str.split(' ')
  reverse_str = []

  words.length.times do |i|
    reverse_str[i] = words[i].reverse
  end
    

  return reverse_str.join(" ")
end