The link : leetcode.com/problems/house-robber/submissions/ House Robber - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 전형적인 동적 프로그래밍 (Dynamic Programming = DP) 문제이다. 유사한 문제로 백준 2579번 계단 오르기가 있다. 한 자리 건너뛰는 집만 털 수 있는 조건이다보니 로직 자체는 어렵지 않았다. 다만 LeetCode 특유의 예외처리에서 몇 번의 실수를 거쳤다. (num..