mirror of
https://github.com/donnemartin/system-design-primer.git
synced 2025-12-14 17:08:56 +03:00
The function parameter in __reducer(self, key, value):__ is __value__ (without an _s_) but the function body uses __values__ with an _s_ which creates an undefined name. Solution: change the function parameter from __value__ to __values__.