New and Improved and not O(n2): But still slower than two of the other answers.
The only advantage of this solution is memory savings. It avoids building a big dict and instead stores only what is necessary at the time. TokenMacGuy's second solution does this as well but this is slightly faster.
def get_deltas_aas(today, yesterday):
deltas = {}
for (new_rank, new_album), (old_rank, old_album) in \
itertools.izip(enumerate(today), enumerate(yesterday)):
if old_album in deltas:
#Believe it or not, this is faster than deltas.pop(old_album) + old_rank
yield (old_album, deltas[old_album] + old_rank)
del deltas[old_album]
else:
deltas[old_album] = old_rank
if new_album in deltas:
yield (new_album, deltas[new_album] - new_rank)
del deltas[new_album]
else:
deltas[new_album] = -new_rank
Here's some timing results for most of the answers here (all of the ones in Python unless I missed something). dict ordering is in effect. If anybody wants me to change their code in any way, just ping me.
get_deltas_token1: 1.08131885529 msecs
get_deltas_gnibbler: 1.06443881989 msecs
get_deltas_tyler: 1.61993408203 msecs
get_deltas_token2: 1.52525019646 msecs
get_deltas_hughdbrown: 3.27240777016 msecs
get_deltas_aas: 1.39379096031 msecs
The code I used to do the timing is here. I'm pleased with the timing framework I tossed together for it on top of timeit. Should be useful in the future after refactoring the code for running the tests.