This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
The Impossible Math Solver | |
There will be a predefined target and the process will start with 2 numbers. There will be a set | |
of predefined operations from which any operation can be used any number of times in any order. | |
Each operation will accept 2 numbers. First one is the output of the previous operation and the | |
second one is any number generated from previous operations. Generated numbers must be unique. | |
The goal is to create a list of operation where the last operation will generate the predefined | |
target. | |
NewerOlder