[Ian Kelly]
> Which is O(n).  If that is too verbose, you could also use a dictionary:
>
> def invert(p):
>     return dict(map(reversed, enumerate(p)))


def inv(p):
    return dict(zip(p, itertools.count()))


Raymond
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to