On Sat, 1 Aug 2015 22:06 Lukas Barth <m...@tinloaf.de> wrote:


Nice idea! But I actually really need those "canonic rotations", since I'm
hashing them somewhere.



Do you really need the canonical rotation or just a hash that is invariant
under rotations?

I don't know of a solution to the former that is better than what you
already have but the latter is an easier problem: Find the minimum element.
Compute the hash of the rotated sequence for each occurrence of the least
common element. Add those hashes together or multiply them or some similar
operation. That's your hash that will compare equal for any rotation of a
given sequence.

--
Oscar
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to