I receive a dictionary as input, and want to return a list of keys for which the dictionary values are unique in the scope of that dictionary.
I will clarify with an exa
Note that this actually is a bruteforce:
l = a.values() b = [x for x in a if l.count(a[x]) == 1]