Counter Technique
Example of implementation
from collections import Counter
def counter_technique(nums):
counter = Counter(nums)
for key, value in counter.items():
if value == 1:
return keyProblem
Last updated