Find words which contains all the vowels: Difference between revisions

Content added Content deleted
(Add Draco)
Line 1,598:
</pre>
 
=={{header|Ruby}}==
<lang ruby>File.open("unixdict.txt").each(chomp: true) do |word|
puts word if word.size > 10 && word.chars.tally.values_at('a','e','i','o','u').all?(1)
end
</lang>
{{out}}
<pre>ambidextrous
bimolecular
cauliflower
communicable
communicate
consanguine
consultative
countervail
exclusionary
grandiloquent
importunate
incommutable
incomputable
insupportable
loudspeaking
malnourished
mensuration
oneupmanship
pandemonium
permutation
perturbation
portraiture
praseodymium
stupefaction
sulfonamide
</pre>
=={{header|Swift}}==
<lang swift>import Foundation