1.House Robber
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.
Example 1:
Example 2:
Maximum sum such that no two elements are adjacent
Algorithm:
Maintaining 2 variable : - max sum including prev element - max sum excluduing prev element - maxInc = max(maxInc, maxEnc + current element) - maxEnc = previous max Inc
House Robber II
All houses at this place are arranged in a circle. Max adjacent sum in a circular array
Approach: Find Max Adjacent from 0 to n-2 and 1 to n-1. Return the max of two numbers
Last updated