in the Dictonary given below
Counter({'d': 4, 'b': 3, 'c': 1, 'e': 3, 'a': 2, 'g': 1})
Can I get the keys c,g
based on the value 1
? Is it possible to get the key based on the data it has.
in other words, is there any reverse relation searching techniques from which we can get the key(s) if the value for the key(s) provided?