Skip to content

Commit

Permalink
readme
Browse files Browse the repository at this point in the history
  • Loading branch information
JieningYu committed Dec 26, 2022
1 parent f22abbe commit c253c27
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
@@ -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:

`>>, <<, ^, &`

0 comments on commit c253c27

Please sign in to comment.