198. 打家劫舍
作者:互联网
邻的房屋装有相互连通的防盗系统,如果两间相邻的房屋在同一晚上被小偷闯入,系统会自动报警。
给定一个代表每个房屋存放金额的非负整数数组,计算你 不触动警报装置的情况下 ,一夜之内能够偷窃到的最高金额。
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/house-robber
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
class Solution {
public int rob(int[] nums) {
if (nums == null || nums.length == 0) {
return 0;
}
int rob = 0, noRob = 0;
for (int num : nums) {
int t = rob;
rob = noRob + num;
noRob = Math.max(noRob, t);
}
return Math.max(rob, noRob);
}
}
标签:198,nums,int,rob,noRob,num,打家劫舍,Math 来源: https://www.cnblogs.com/tianyiya/p/15695050.html