Sorry for the title and question but I don't know how it is called (and how to google) if I want to find out with how many times I can build a number from a group of numbers:
possible_numbers = 1, 2, 4, 8, 16
If I want number 23 I need
1x 16
0x 8
1x 4
1x 2
1x 1
Is there any build in function in Python to do this?
Thank you in advance!
Edit: The numbers are fixed to 1,2,4,8,16,32,64,128. Multiple selections are possible. Thanks for the replies!
Since there is no build in function, I'll code it myself.
23x 1also a valid output? – robert Jun 2 '12 at 13:57