|
|
|
|
|
by funny_falcon
633 days ago
|
|
Readability, reproducibility, and simple LRU. Reproducibility matters for tests, they become simpler. Some other algorithms become simpler as well. LRU is just a dict with preserving order: on access just delete and insert again. |
|