How can I solve this riddle programmatically? Could someone help me with some pseudo-code or something?
Nine 9s
Combining nine 9's with any number of the operators +, -, *, /, (, ), what is the smallest positive integer that cannot be expressed?
Hints:
The answer isn't zero. You can express zero like this: (9 - 9) * (9 + 9 + 9 + 9 + 9 + 9 + 9). Also, zero isn't a positive integer.
The answer isn't one. You can express one like this: 9 - (9 * 9 - 9)/9 + 9 - 9 + 9 - 9
It's not a trick question.
Be sure to handle parentheses correctly.
Notes:
- You cannot use exponentiation.
- You cannot concatenate (for example, put two 9's together to make 99).
- The - operator can be used in either its binary or unary form.
- Assume base 10.
This is actually a famous puzzle and there are probably many solutions hovering around the internet. I am not sure if any of them is correct or not. Does anybody have a well explained solution?
Code Golfquestion? What have you tried so far? I don't see anything along those lines. ...and what's up with your dollar-sign notation? – Matt Ball Dec 17 '10 at 20:43