adventOfCode/challenges
AKU a60facbf55
2021-10 Py: switch to using collections.deque
By switching the lists I was using as stacks out with a deque, I
appear to have achieved a teeeensy speed improvement.

List `append()` and `pop()` methods have at most a O(n) time
complexity, where deques have a O(1) time complexity.

https://docs.python.org/3/library/collections.html#collections.deque

Signed-off-by: AKU <tom@tdpain.net>
2021-12-10 16:34:14 +00:00
..
2020 Fix 2020 README.md links 2021-12-02 21:08:04 +00:00
2021 2021-10 Py: switch to using collections.deque 2021-12-10 16:34:14 +00:00