An open API service indexing awesome lists of open source software.

https://github.com/tamada/nmaker

make n value from four different integer (1-9).
https://github.com/tamada/nmaker

Last synced: 10 months ago
JSON representation

make n value from four different integer (1-9).

Awesome Lists containing this project

README

          

NMaker
======

Overview
--------

Make n value from given four different integer value by adding,
subtracting, multiplying, and dividing.

For example, 2, 3, 4, and 7 are given, make 1 to 9 then:

* 1: (2-4)*3+7, ...
* 2: 2-3-4+7, ...
* 3: (2-3)*4+7, ...
* 4: 3-2-4+7, ...
* 5: (3-4)*2+7, ...
* 6: 4-2-3+7, ...
* 7: 3*4+2-7, ...
* 8: 2+3-4+7, ...
* 9: 2*3-4+7, ...

Requirements
------------

* Compile
* Java 8
* Maven 3
* JUnit 4.12
* Run
* Java SE 8

Author
------

* Haruaki Tamada
* http://github.com/tamada/nmaker