Isograms and heterograms: Difference between revisions

Content added Content deleted
m (typo)
Line 139: Line 139:




=={{header/Julia}}==
=={{header|Julia}}==
<lang ruby>function isogram(word)
<lang ruby>function isogram(word)
wchars, uchars = collect(word), unique(collect(word))
wchars, uchars = collect(word), unique(collect(word))