I am looking for a more efficient way to do comparisons between all elements of a python dict.
Here is psuedocode of what I am doing:
for key1 in dict:
for key2 in dict:
if not key1 == key2:
compare(key1,key2)
if the length of the dict is N, this is N^2 - N. Is there any way of not repeating the elements in the second loop? For lists, this would be:
N = len(list)
for i in range(1:(N-1)):
for j in range((i+1):N):
compare(list[i], list[j])
anyway to do this for the dict case?