tracks/java/exercises/wordy/README.md in trackler-2.2.1.45 vs tracks/java/exercises/wordy/README.md in trackler-2.2.1.46
- old
+ new
@@ -1,21 +1,19 @@
# Wordy
Parse and evaluate simple math word problems returning the answer as an integer.
-
## Iteration 1 — Addition
Add two numbers together.
> What is 5 plus 13?
Evaluates to 18.
Handle large numbers and negative numbers.
-
## Iteration 2 — Subtraction, Multiplication and Division
Now, perform the other three operations.
> What is 7 minus 5?
@@ -28,11 +26,10 @@
> What is 25 divided by 5?
5
-
## Iteration 3 — Multiple Operations
Handle a set of operations, in sequence.
Since these are verbal word problems, evaluate the expression from
@@ -44,18 +41,16 @@
> What is 3 plus 2 multiplied by 3?
15 (i.e. not 9)
-
## Bonus — Exponentials
If you'd like, handle exponentials.
> What is 2 raised to the 5th power?
32
-
To run the tests:
```sh