two-sum-iii-self-pair-requires-count-two

Status: IN

In `TwoSum.find()`, a number can only pair with itself to reach a target if its count in the `Counter` is >= 2; this prevents `add(3); find(6)` from returning `True`.

Source: entries/2026/06/06/two-sum-iii-data-structure-design-solution.md

JSON