What is the quickest way to find the first character which only appears once in a string?
In Mathematica one might write this:
string = "conservationist deliberately treasures analytical"; Cases[Gather @ Characters @ string, {_}, 1, 1][[1]]
{"v"}