+ 57
A solution using Java stream...
https://code.sololearn.com/c9eoT44j48w2/?ref=app
+ 44
Pretty easy w/h RegExp: https://code.sololearn.com/Wul3yGy1mr2H/?ref=app
+ 43
https://code.sololearn.com/c8QPDf3wV1EQ/?ref=app
In one line
+ 39
Could this be any simpler in ruby?
https://code.sololearn.com/cqkbde0TX9uU/?ref=app
+ 25
My solution
https://code.sololearn.com/cK9dGVOAu2Wv/?ref=app
A Concised solution:
https://code.sololearn.com/cM6Mx7eeS5eA/?ref=app
+ 24
Be prepared to be WOW-ed by clean and trivial solution from certain languages!!! 😂
+ 18
Simple yet effective solution using python:
https://code.sololearn.com/c4Iz10xA1jU2/#py
+ 18
C++ solution.
https://code.sololearn.com/cT56k8LnFY11
+ 17
Evo ga... https://code.sololearn.com/cqypX3Sbdi75/#java :)
+ 14
My try in Ruby:
https://code.sololearn.com/cC12Dqicy3UO/#rb
=> Rby t th rsc!
+ 14
My version = Replacing vowels by delimiters
https://code.sololearn.com/cV9T0uhZlfNp/?ref=app
+ 14
https://code.sololearn.com/cBslRz1c56tJ/?ref=app
+ 13
Haskell with the one-liners, as usual:
main = interact $ filter (\x -> not $ x `elem` "aeiouAEIOU")
EDIT: Thanks ace, fixed!
+ 13
Just need a few lines, that's it? ^^
https://code.sololearn.com/cUdd7VXlZoOu/?ref=app
+ 12
https://code.sololearn.com/c89pjpajabrC/?ref=app
+ 10
I fixed it, and it's now much more efficient! :D
https://code.sololearn.com/cjK5L4mvUjlG/?ref=app
+ 10
https://code.sololearn.com/cGjr80Bh46DT/?ref=app
+ 10
replace [aeiouAEIOU] ""
+ 10
My C# one-liner: https://code.sololearn.com/cSWilEHSHCpM/#cs