NDOJ/judge/utils/cachedict.py
2020-01-21 15:35:58 +09:00

8 lines
217 B
Python

class CacheDict(dict):
def __init__(self, func):
super(CacheDict, self).__init__()
self.func = func
def __missing__(self, key):
self[key] = value = self.func(key)
return value