We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 673d9d8 commit 90ee8a5Copy full SHA for 90ee8a5
0198-house-robber/0198-house-robber.py
@@ -1,7 +1,7 @@
1
class Solution:
2
def rob(self, nums: List[int]) -> int:
3
# 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.
+ # similar to fibonacci (or) climbing 1-2 steps in ladder
5
6
prev_max = 0
7
max_money = 0
0 commit comments