Return first non-repeating character in a string. Example: "aabccbd" => "d"
Implement this function:
def first_non_repeating_char(s: str) -> str:
Write the function only — the arguments are read for you and the return value is printed automatically.
Arguments arrive as one Python literal per line, in this order: s.
Input
'aabccbd'
Output
'd'