Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
MY 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
code
piramid
Hex Color Reader (Ruby)
ruby LRU cache with constant get/set
Hash and Symbols
variables output
piramid4
piramid2
faktorial
Division Function without / or * signs