Parse and evaluate simple math word problems returning the answer as an integer.
Problems with no operations simply evaluate to the number given.
What is 5?
Evaluates to 5.
Add two numbers together.
What is 5 plus 13?
Evaluates to 18.
Handle large numbers and negative numbers.
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
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)
The parser should reject:
If you'd like, handle exponentials.
What is 2 raised to the 5th power?
32
Go through the setup instructions for Java to install the necessary dependencies:
https://exercism.io/tracks/java/installation
You can run all the tests for an exercise by entering the following in your terminal:
$ gradle test
Use
gradlew.bat
if you're on Windows
In the test suites all tests but the first have been skipped.
Once you get a test passing, you can enable the next one by removing the
@Ignore("Remove to run test")
annotation.
Inspired by one of the generated questions in the Extreme Startup game. https://github.com/rchatley/extreme_startup
It's possible to submit an incomplete solution so you can see how others have completed the exercise.
import org.junit.Ignore;
import org.junit.Rule;
import org.junit.Test;
import org.junit.Before;
import org.junit.rules.ExpectedException;
import static org.junit.Assert.assertEquals;
public class WordProblemSolverTest {
@Rule
public ExpectedException expectedException = ExpectedException.none();
WordProblemSolver solver;
@Before
public void setup() {
solver = new WordProblemSolver();
}
@Test
public void testSingleAddition1() {
assertEquals(2, solver.solve("What is 1 plus 1?"));
}
@Ignore("Remove to run test")
@Test
public void testSingleAddition2() {
assertEquals(55, solver.solve("What is 53 plus 2?"));
}
@Ignore("Remove to run test")
@Test
public void testSingleAdditionWithNegativeNumbers() {
assertEquals(-11, solver.solve("What is -1 plus -10?"));
}
@Ignore("Remove to run test")
@Test
public void testSingleAdditionOfLargeNumbers() {
assertEquals(45801, solver.solve("What is 123 plus 45678?"));
}
@Ignore("Remove to run test")
@Test
public void testSingleSubtraction() {
assertEquals(16, solver.solve("What is 4 minus -12?"));
}
@Ignore("Remove to run test")
@Test
public void testSingleMultiplication() {
assertEquals(-75, solver.solve("What is -3 multiplied by 25?"));
}
@Ignore("Remove to run test")
@Test
public void testSingleDivision() {
assertEquals(-11, solver.solve("What is 33 divided by -3?"));
}
@Ignore("Remove to run test")
@Test
public void testMultipleAdditions() {
assertEquals(3, solver.solve("What is 1 plus 1 plus 1?"));
}
@Ignore("Remove to run test")
@Test
public void testAdditionThenSubtraction() {
assertEquals(8, solver.solve("What is 1 plus 5 minus -2?"));
}
@Ignore("Remove to run test")
@Test
public void testMultipleSubtractions() {
assertEquals(3, solver.solve("What is 20 minus 4 minus 13?"));
}
@Ignore("Remove to run test")
@Test
public void testSubtractionThenAddition() {
assertEquals(14, solver.solve("What is 17 minus 6 plus 3?"));
}
@Ignore("Remove to run test")
@Test
public void testMultipleMultiplications() {
assertEquals(-12, solver.solve("What is 2 multiplied by -2 multiplied by 3?"));
}
@Ignore("Remove to run test")
@Test
public void testAdditionThenMultiplication() {
assertEquals(-8, solver.solve("What is -3 plus 7 multiplied by -2?"));
}
@Ignore("Remove to run test")
@Test
public void testMultipleDivisions() {
assertEquals(2, solver.solve("What is -12 divided by 2 divided by -3?"));
}
@Ignore("Remove to run test")
@Test
public void testUnknownOperation() {
expectedException.expect(IllegalArgumentException.class);
expectedException.expectMessage("I'm sorry, I don't understand the question!");
solver.solve("What is 52 cubed?");
}
@Ignore("Remove to run test")
@Test
public void testInvalidQuestionFormat() {
expectedException.expect(IllegalArgumentException.class);
expectedException.expectMessage("I'm sorry, I don't understand the question!");
// See https://en.wikipedia.org/wiki/President_of_the_United_States if you really need to know!
solver.solve("Who is the President of the United States?");
}
}
package wordy.src.main.java;
public class WordProblemSolver {
public int solve(String phrase) {
if(!phrase.matches(".*(plus|minus|multiplied|divided).*"))
throw new IllegalArgumentException("I'm sorry, I don't understand the question!");
phrase = phrase.replaceAll("What is\\s|by\\s|\\?","");
String[] word = phrase.split("\\s");
int result = 0;
boolean firstOp = true;
for (int i = 0; i < word.length; i++) {
switch (word[i]){
case "minus":
if(firstOp) {
result += Integer.parseInt(word[i - 1]) - Integer.parseInt(word[i + 1]);
firstOp = false;
}else
result -= Integer.parseInt(word[i+1]);
break;
case "plus":
if(firstOp) {
result += Integer.parseInt(word[i - 1]) + Integer.parseInt(word[i + 1]);
firstOp = false;
}else
result += Integer.parseInt(word[i+1]);
break;
case "multiplied":
if(firstOp) {
result += Integer.parseInt(word[i - 1]) * Integer.parseInt(word[i + 1]);
firstOp = false;
}else
result *= Integer.parseInt(word[i+1]);
break;
case "divided":
if(firstOp) {
result += Integer.parseInt(word[i - 1]) / Integer.parseInt(word[i + 1]);
firstOp = false;
}else
result /= Integer.parseInt(word[i+1]);
break;
}
}
return result;
}
}
A huge amount can be learned from reading other people’s code. This is why we wanted to give exercism users the option of making their solutions public.
Here are some questions to help you reflect on this solution and learn the most from it.
Level up your programming skills with 3,126 exercises across 52 languages, and insightful discussion with our volunteer team of welcoming mentors. Exercism is 100% free forever.
Sign up Learn More