Find words which contains more than 3 e vowels: Difference between revisions

m
(Frink)
Line 905:
 
=={{header|Frink}}==
<lang frink>for word = lines["https://web.archive.org/web/20180611003215if_/http://www.puzzlers.org:80/pub/wordlists/unixdict.txt"]
<lang frink>
for word = lines["https://web.archive.org/web/20180611003215if_/http://www.puzzlers.org:80/pub/wordlists/unixdict.txt"]
{
d = countToDict[charList[word]]
if d.get["a",0] == 0 and d.get["e",0] > 3 and d.get["i",0] == 0 and d.get["o",0] == 0 and d.get["u",0] == 0
println[word]
}</lang frink>
}
</lang>
{{out}}
<pre>
490

edits