Unique characters in each string: Difference between revisions

Content added Content deleted
(clarify the task)
Line 2: Line 2:


;Task:
;Task:
Given a list of strings,   find characters appearing in each string and once only.
Given a list of strings, find the characters appearing exactly once in each string.

The result should be given in alphabetical order:
1 2 3 a b c


The result should be in alphabetical order.


Use the following list for this task:
Use the following list for this task:
["1a3c52debeffd", "2b6178c97a938stf", "3ycxdb1fgxa2yz"]
["1a3c52debeffd", "2b6178c97a938stf", "3ycxdb1fgxa2yz"]


For this list, the result would be:
1 2 3 a b c


{{Template:Strings}}
{{Template:Strings}}