first-unique-char-two-pass-frequency

Status: IN

The first-unique-character solution uses a two-pass approach: pass 1 builds a complete `Counter` over the entire string, pass 2 scans in original order to find the first character with count exactly 1.

Source: entries/2026/06/06/first-unique-character-in-a-string-solution.md

JSON