Isograms and heterograms: Difference between revisions

Content added Content deleted
(julia example)
m (typo)
Line 137: Line 137:
</pre>
</pre>



=={{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))