Interview Guides

Given a string s, return all duplicate characters in the order they first become confirmed as duplicates. A character is a duplicate if it appears more than once in the string. Return the result as a list of characters, with each duplicate character included only once.
0 <= len(s) <= 10^5s may contain lowercase letters, uppercase letters, digits, spaces, or symbols