Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
code
def abbreviate_sentence(sent) new_words = [] part = sent.split(' ') part.each do |ele| if ele.length > 4 new_ele = new_word_greaterthan(ele) new_words << new_ele else new_words << ele end end new_words.join('') end def new_word_greaterthan(ele) vowels = 'aeiou' no_vowels = '' ele.each_char do |char| if !vowels.include?(char) no_vowels+=char end end return no_vowels end puts abbreviate_sentence('follow the yellow bricks road')
run
|
edit
|
history
|
help
0
Testing out multiple variable returns in a method
IS_IP?
Adiel Vasquez
numbers
MACK FIRST wall
Calculator
piramid2
boolean
faktorial
yes