Unique characters: Difference between revisions

m
(→‎{{header|J}}: simplify)
Line 864:
 
=={{header|J}}==
The simple approach here is to merge the argument strings and find characters which occur exactly once in that intermediate result:
<lang J>uniques=: ~.#~1=#/.~</lang>
{{out}}
6,951

edits