Skip to content

Instantly share code, notes, and snippets.

@maniish-jaiin
Created July 15, 2020 11:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maniish-jaiin/eb2962b748a64fc073556e642edf1cb0 to your computer and use it in GitHub Desktop.
Save maniish-jaiin/eb2962b748a64fc073556e642edf1cb0 to your computer and use it in GitHub Desktop.
@Test
public void evaluateWhenAllOperatorAreFound() {
ReversePolishNotation rpn = new ReversePolishNotation();
double result = rpn.evaluate("10 6 9 3 + -11 * / * 17 + 5 +");
assertEquals(21.5, result, 0.1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment