Have python & pipenv and install the deps:
pipenv install
Run the tests so you know your env works:
pipenv run pytest
Create a program which given an integer produces the english words representing that number.
- 1 -> One
- 13 -> Thirteen
- 105 -> One hundred and five.
- 2103 -> Two thousand one hundred and three
With the above working extend the input so floats are covered using fractions
- 1.5 -> One and a half
- 12.75 -> Twelve and three quarters
- 5.05 -> Five and five hundredths
Add additional functionality to produce a number from english words. The reverse of the above.
- One -> 1
- Thirteen -> 13