get each pair from a string.

Neil Cerutti neilc at norwich.edu
Tue Oct 23 08:30:51 EDT 2012


On 2012-10-23, wxjmfauth at gmail.com <wxjmfauth at gmail.com> wrote:
> Why bother with speeed?

Because the differences between O(N), O(log(N)) and O(N ** 2)
operations are often relevant.

A Python string replace function experiencing a slow-down from
previous versions doesn't absolve me from making informed choices
of algorithm and implentation.

-- 
Neil Cerutti



More information about the Python-list mailing list