Sha256: 0cf66bf1820289702247af7c9b4ec1637d6e88569de02deb68cfbe937ed1d190

Contents?: true

Size: 1.84 KB

Versions: 102

Compression:

Stored size: 1.84 KB

Contents

# 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?

2

> What is 6 multiplied by 4?

24

> 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
left-to-right, _ignoring the typical order of operations._

> What is 5 plus 13 plus 6?

24

> 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


* * * *

For installation and learning resources, refer to the
[exercism help page](http://exercism.io/languages/ruby).

For running the tests provided, you will need the Minitest gem. Open a
terminal window and run the following command to install minitest:

    gem install minitest

If you would like color output, you can `require 'minitest/pride'` in
the test file, or note the alternative instruction, below, for running
the test file.

In order to run the test, you can run the test file from the exercise
directory. For example, if the test suite is called
`hello_world_test.rb`, you can run the following command:

    ruby hello_world_test.rb

To include color from the command line:

    ruby -r minitest/pride hello_world_test.rb


## Source

Inspired by one of the generated questions in the Extreme Startup game. [https://github.com/rchatley/extreme_startup](https://github.com/rchatley/extreme_startup)

## Submitting Incomplete Solutions
It's possible to submit an incomplete solution so you can see how others have completed the exercise.

Version data entries

102 entries across 102 versions & 1 rubygems

Version Path
trackler-2.2.1.99 tracks/ruby/exercises/wordy/README.md
trackler-2.2.1.98 tracks/ruby/exercises/wordy/README.md
trackler-2.2.1.97 tracks/ruby/exercises/wordy/README.md
trackler-2.2.1.96 tracks/ruby/exercises/wordy/README.md
trackler-2.2.1.95 tracks/ruby/exercises/wordy/README.md
trackler-2.2.1.94 tracks/ruby/exercises/wordy/README.md
trackler-2.2.1.93 tracks/ruby/exercises/wordy/README.md
trackler-2.2.1.92 tracks/ruby/exercises/wordy/README.md
trackler-2.2.1.91 tracks/ruby/exercises/wordy/README.md
trackler-2.2.1.90 tracks/ruby/exercises/wordy/README.md
trackler-2.2.1.89 tracks/ruby/exercises/wordy/README.md
trackler-2.2.1.88 tracks/ruby/exercises/wordy/README.md
trackler-2.2.1.87 tracks/ruby/exercises/wordy/README.md
trackler-2.2.1.86 tracks/ruby/exercises/wordy/README.md
trackler-2.2.1.85 tracks/ruby/exercises/wordy/README.md
trackler-2.2.1.84 tracks/ruby/exercises/wordy/README.md
trackler-2.2.1.83 tracks/ruby/exercises/wordy/README.md
trackler-2.2.1.82 tracks/ruby/exercises/wordy/README.md
trackler-2.2.1.81 tracks/ruby/exercises/wordy/README.md
trackler-2.2.1.80 tracks/ruby/exercises/wordy/README.md