-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5891c38
commit 92d5f88
Showing
1 changed file
with
16 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,20 @@ | ||
from typing import Callable | ||
from functools import wraps | ||
|
||
|
||
def cache(func: Callable) -> Callable: | ||
# Write your code here | ||
pass | ||
cache_dict = {} | ||
|
||
@wraps(func) | ||
def wrapper(*args, **kwargs) -> Callable: | ||
key = (args, tuple(kwargs.items())) | ||
|
||
if key in cache_dict: | ||
print("Getting from cache") | ||
return cache_dict[key] | ||
else: | ||
print("Calculating new result") | ||
cache_dict[key] = func(*args, **kwargs) | ||
return cache_dict[key] | ||
|
||
return wrapper |