Skip to content

Instantly share code, notes, and snippets.

@maniish-jaiin
Created July 15, 2020 11:22
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/d7e43ef121eb6e9e813834e021388d43 to your computer and use it in GitHub Desktop.
Save maniish-jaiin/d7e43ef121eb6e9e813834e021388d43 to your computer and use it in GitHub Desktop.
public void addNumbersWhenPlusOperatorIsFound() {
ReversePolishNotation rpn = new ReversePolishNotation();
double result = rpn.evaluate("5 5 +");
assertEquals(10.0, result, 0.1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment