| 4 | |
| 5 | |
| 6 | class Solution: |
| 7 | def containsDuplicate(self, nums: List[int]) -> bool: |
| 8 | count = {} |
| 9 | for n in nums : |
| 10 | if count.get(n) != None : |
| 11 | return True |
| 12 | count[n] = 1 |
| 13 | return False |
nothing calls this directly
no outgoing calls
no test coverage detected