Tagged in

Dynamic Programming

Coding Memo
Coding Memo
leetcode solutions and programming notes
More information
Followers
16
Elsewhere
More, on Medium

[Leetcode] House Robber

Similar with Climbing Stairs that turns sum into max.

Description

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…


[Leetcode] Combination Sum IV

A quite similar problem with Coin Change. The difference is the dp usage.

Description

Given an array of distinct integers nums and a target integer target, return the number of possible combinations that add up to target.