You are a professional robber planning to rob houses along a street. Each house has a certain amount of money stashed. All houses at this place are arranged in a circle. That means the first house is the neighbor of the last one. Meanwhile, adjacent houses have a security system connected, and it will automatically contact the police if two adjacent houses were broken into on the same night. Given an integer array `nums` representing the amount of money of each house, return the maximum amount of money you can rob tonight without alerting the police.
Dynamic Programming (Circular Constraint)
Since the houses are in a circle, we cannot rob both the first and the last house simultaneously. This circular problem can be reduced to two linear 'House Robber I' sub-problems: 1. Rob houses from index `0` to `n-2` (exclude the last house). 2. Rob houses from index `1` to `n-1` (exclude the first house). The final answer is the maximum of these two results. Note: For a single house, the answer is just that house's value.