funny little scratch cat that solves the game 24. in 24, you are given 4 numbers which you must string together in some way, using only the basic four math operations, to get 24. example: you are given 4, 5, 6, 7. first, 5 - 6 is -1. then, -1 + 7 is 6. finally, 6 * 4 = 24. therefore, the solution is ((5 - 6) + 7) * 4. my solver doesnt really know how parentheses, it only does operations left to right without regard for order of operations. so if you try to give it a tough problem that requires a solution in the form of (a + b) * (c - d) or something it will just give up lol