Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Written by Array Alchemist
LeetCode wizard with 75 conquered challenges under my belt.
Turning algorithm nightmares into "Aha!" moments, one explanation at a time.
Join me to level up your coding skills – from interviews to real-world application!
Given an array of distinct integers nums and a target integer target, return the number of possible combinations that add up to target.
The test cases are generated so that the answer can fit in a 32-bit integer.
Example 1:
Example 2:
First just to understand this problem easily let's use more relatable example.
We'll use the concept of making change with coins.
Coin Change Example:
Imagine you're working at a school cafeteria, and you need to give change to students.
Building Up Knowledge:
The Programming Connection:
The Key Insight:
Also, what are some real world application of combination sum?
Let's see how we can solve it:
why? if(num < = amount) ?
if only current num is less than the amount, then we can use it to make our solution
For example, you can't use a quarter (25¢) to make 10¢.
The number of ways to make 15¢ includes all the ways to make 5¢ (because we just used a 10¢ coin)
After submitting the solution to leetcode:
Complexities: