-
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.
Cache decorator function for reviewing
- Loading branch information
Showing
1 changed file
with
17 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,21 @@ | ||
from typing import Callable | ||
from functools import wraps | ||
|
||
|
||
def cache(func: Callable) -> Callable: | ||
# Write your code here | ||
pass | ||
cache_storage = {} | ||
|
||
@wraps(func) | ||
def wrapper(*args) -> dict: | ||
if isinstance(args, (str, int, float, tuple, bool)): | ||
if args in cache_storage: | ||
print("Getting from cache") | ||
return cache_storage[args] | ||
else: | ||
print("Calculating new result") | ||
result = func(*args) | ||
cache_storage[args] = result | ||
return result | ||
else: | ||
print("Not immutable data") | ||
return wrapper |