I’m trying to make a 24 solver (the game 24’s objective is to use +,-,*,/ to get to the number 24)
I’m reasonably confident that the only way to do this is using a brute force method (try each combination of the numbers with the operators in between them.
To eliminate the need for parenthesis, I think the number placement should also be randomized.
I want to do this in C#.
How should I go about doing this?
(basic outline, plan…)
Taken from: google codeplex