Course · Section 9: Data Structures, Modern Operators and Strings · Lecture 128: Working With Strings - Part 1
Implement `firstUnique(s)` returning the first character that appears exactly once, or an empty string if there is none.
+ 1 hidden test run on Submit.
Two passes (count, then scan in order) find the first character that appears exactly once.
Run your code to see results.