Metadata-Version: 2.4
Name: make10solver
Version: 0.1.0
Summary: Find arithmetic expressions that make 10 from 4 numbers
Author: Saito Tsutomu
Author-email: Saito Tsutomu <tsutomu.saito@moai-lab.jp>
License-Expression: Apache-2.0
License-File: LICENSE
Classifier: Development Status :: 1 - Planning
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development
Classifier: Topic :: Scientific/Engineering
Requires-Dist: fire>=0.7.1
Requires-Python: >=3.14
Project-URL: homepage, https://github.com/SaitoTsutomu/make10solver
Description-Content-Type: text/markdown

# make10solver

Given four integers as input, this tool finds an expression that makes 10 using the four basic arithmetic operations and parentheses.

## Usage

```bash
uv run make10 1 2 3 4
```

If no solution exists, it outputs nothing.

To change the target value:

```bash
uv run make10 1 2 3 4 --target 24
```
