Skip to content

Commit 90ee8a5

Browse files
committedNov 15, 2023
Time: 46 ms (13.14%), Space: 16.2 MB (74.56%) - LeetHub
1 parent 673d9d8 commit 90ee8a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎0198-house-robber/0198-house-robber.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
class Solution:
22
def rob(self, nums: List[int]) -> int:
33
# detailed explanation in https://leetcode.com/problems/house-robber/solutions/156523/from-good-to-great-how-to-approach-most-of-dp-problems/
4-
# similar to fibonacci (or) climbing 1-2 steps in ladder.
4+
# similar to fibonacci (or) climbing 1-2 steps in ladder
55

66
prev_max = 0
77
max_money = 0

0 commit comments

Comments
 (0)
Please sign in to comment.