Merge remote-tracking branch 'refs/remotes/origin/main'

This commit is contained in:
PeaceNira 2024-11-08 20:50:18 +00:00
commit 83f42a9a8d

View file

@ -28,7 +28,7 @@ def timed(function: any) -> any:
return wrapper return wrapper
# Python uses @ to use a wrapper on a function # This is how we call a decorator in python.
@timed @timed
# O(n^2) time complexity due to nested loops # O(n^2) time complexity due to nested loops
def exponential_function(n: int) -> int: def exponential_function(n: int) -> int: