Non-Constructable Change

Given an array of positive integers representing the values of coins in your possession, write a function that returns the minimum amount of change (the minimum sum of money) that you cannot create. The given coins can have any positive integer value and aren't necessarily unique (i.e., you can have multiple coins of the same value).


For example, if you're given coins = [1, 2, 5], the minimum amount of change that you can't create is 4. If you're given no coins, the minimum amount of change that you can't create is 1.


Sample Input

coins = [5, 7, 1, 1, 2, 3, 22]

Sample Output

20

Approach

টুলস 

- এরে  সর্ট 

- ম্যাথ: যদি এরে  সর্ট করা থাকে এবং  যদি (কারেন্ট নাম্বার) যদি আগের সব  (এরের যোগফল  + ১) থেকে   বড় হয় তাহলে (এরের যোগফল  + ১) হবে এমন সংখ্যা যা তৈরী করা যাবে না 


টেকনিক 

- এরেকে সর্ট করতে হবে 

- একটা বেরিয়েবল sumOfAllPreviousValue = 0 নিতে হবে 

coins দিয়ে লুপ চালাতে হবে 

- ম্যাথ চেক করতে হবে 


Code Solution

Related video solution