Add examples

This commit is contained in:
Rohit Tanwar
2018-01-01 22:23:12 +05:30
committed by GitHub
parent a3f0bc3c87
commit eb8637b4a6

View File

@ -20,5 +20,7 @@ const RPNSolver = RPN => {
```
```js
RPNSolver('15 7 1 1 + - / 3 * 2 1 1 + + -'); // 5
RPNSolver('3 5 6 + *'); //33
RPNSolver('2 4 / 5 6 - *'); //-0.5
```