DEV Community

Discussion on: how to fix

Collapse
 
dharshann profile image
Dharshan Bharathuru
def spinWords(sentence)
  sentence.split(' ').map { |word| word.length > 5 ? word.reverse : word }.join(' ')
end

spinWords('hi hello welcome to ruby learning')
# "hi hello emoclew to ruby gninrael"