Micro-optimization: replace s.find(x)!=-1 with x in s
timeit shows a speedup of ~3x on Python 2.7.5 x86_64. It also makes the code a bit shorter.
Showing
Please
register
or
sign in
to comment
timeit shows a speedup of ~3x on Python 2.7.5 x86_64. It also makes the code a bit shorter.