I have a series of numbers like
01110101
01001011
01110101
10101101
01020301
30211000
.
.
.
There are lot of numbers with different combinations.
I need a code that find the possible combinations from this series (array) that sum to specific total. for example
I need 3333333 in total by different sets like
01110110
02101110
00122113
these three set sum to 3333333
Please help and guide to solve this problem.......