Jump to content

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

m
(Added Algol 68)
Line 468:
 
=={{header|Julia}}==
See [[Alternade_words#Julia]] for the foreachword function.
<lang julia>ecount(word) = count(x -> x == 'e', word)
vowelcount(word) = count(x -> x in ['a', 'e', 'i', 'o', 'u'], word)
4,108

edits

Cookies help us deliver our services. By using our services, you agree to our use of cookies.