From c253c2795d3e630e5b31c48aae78c08e525b2feb Mon Sep 17 00:00:00 2001 From: Yjn024 Date: Mon, 26 Dec 2022 21:51:18 +0800 Subject: [PATCH] readme --- readme.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 readme.md 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: + +`>>, <<, ^, &`