[pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci
This commit is contained in:
pre-commit-ci[bot] 2024-10-24 19:32:46 +00:00
parent 52f09dffe6
commit 1264c554b6

View File

@ -1,5 +1,3 @@
def house_robber(houses: list[int]) -> int:
"""
Solves the House Robber problem using memoization (caching).
@ -48,5 +46,3 @@ def house_robber(houses: list[int]) -> int:
return memo[n]
return dp(0)