House robber#
Practice Link#
LeetCode
Description#
- You are a professional robber planning to rob houses along a street.
- Each house has a certain amount of money stashed, the only constraint stopping you from robbing each of them is that
adjacent houses have security system connected and it will automatically contact the police if two adjacent houses
were broken into on the same night.
- Given a list of non-negative integers representing the amount of money of each house, determine the maximum amount of
money you can rob tonight without alerting the police.
Examples#
1Input: [1,2,3,1]
2Output: 4
3Explanation: Rob house 1 (money = 1) and then rob house 3 (money = 3).
4 Total amount you can rob = 1 + 3 = 4.
1Input: [2,7,9,3,1]
2Output: 12
3Explanation: Rob house 1 (money = 2), rob house 3 (money = 9) and rob house 5 (money = 1).
4 Total amount you can rob = 2 + 9 + 1 = 12.
Python Solution#
1class Solution:
2 def rob(self, nums):
3 rob, not_rob = 0, 0
4 for num in nums:
5 rob, not_rob = not_rob + num, max(rob, not_rob)
6 return max(rob, not_rob)