diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..bf11daf --- /dev/null +++ b/readme.md @@ -0,0 +1,23 @@ +# Solver024 + +This is a simple 24 points solver written in rust. + +## Example + +```log +1 3 4 5 +(1 + 3) + (4 * 5) +1 + (3 + (4 * 5)) +3 + (1 + (4 * 5)) +3 * (4 - (1 - 5)) +3 * (5 - (1 - 4)) +4 + (5 * (1 + 3)) +``` + +## Operators + +`+, -, *, /` + +Operators that will be supported in the future: + +`>>, <<, ^, &`