Unique characters in each string: Difference between revisions

(Added 11l)
Line 20:
<lang 11l>V LIST = [‘1a3c52debeffd’, ‘2b6178c97a938stf’, ‘3ycxdb1fgxa2yz’]
 
print(sorted(Array(Set(Array(LIST.join(‘’)))).filter(ch -> all(:LIST.map(w -> w.count(@ch) == 1)))))</lang>
 
{{out}}
1,481

edits