Problem
Ask
Submissions

Problem: House Robber

Medium
30 min
Explore how to solve the House Robber challenge by maximizing stolen money while avoiding robbing adjacent houses. Understand constraints and develop an optimal linear time solution with constant space complexity.

Statement

As a skilled thief, you are planning to rob multiple houses on a street, each of which contains a substantial amount of money. However, you cannot rob the adjacent houses due to the connected security systems. Otherwise, the police will be contacted automatically.

Given an array of integers, nums, representing the amount of money present in each house, return the maximum amount of money that you can successfully steal without notifying the police.

Constraints

  • 11 \leq nums.length 103\leq 10^3
  • 00 \leq nums[i] 1000\leq 1000
Problem
Ask
Submissions

Problem: House Robber

Medium
30 min
Explore how to solve the House Robber challenge by maximizing stolen money while avoiding robbing adjacent houses. Understand constraints and develop an optimal linear time solution with constant space complexity.

Statement

As a skilled thief, you are planning to rob multiple houses on a street, each of which contains a substantial amount of money. However, you cannot rob the adjacent houses due to the connected security systems. Otherwise, the police will be contacted automatically.

Given an array of integers, nums, representing the amount of money present in each house, return the maximum amount of money that you can successfully steal without notifying the police.

Constraints

  • 11 \leq nums.length 103\leq 10^3
  • 00 \leq nums[i] 1000\leq 1000