-
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 0ec1d4a
Showing
1 changed file
with
18 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,22 @@ | ||
from typing import Callable | ||
|
||
from functools import wraps | ||
|
||
|
||
def cache(func: Callable) -> Callable: | ||
# Write your code here | ||
pass | ||
cash_dict = {} | ||
|
||
@wraps(func) | ||
def compare_cash(*args) -> dict: | ||
func_name = func.__name__ | ||
|
||
if (func_name, args) not in cash_dict: | ||
print("Calculating new result") | ||
result = func(*args) | ||
cash_dict[(func_name, args)] = result | ||
return result | ||
else: | ||
print("Getting from cache") | ||
return cash_dict[(func_name, args)] | ||
|
||
return compare_cash |