diff --git a/README.md b/README.md index 3cfb760..4da5035 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,7 @@ > This converts an expression from infix to postfix notation >
**[See a detailed explanation here](/InfixToPostfix/README.md)** + ![](/InfixToPostfix/infixToPostfix.png) ``` Input: 1+(3-4)*9/2 @@ -30,6 +31,7 @@ Output: 134-9*2/+ > This takes a postfix notation expression as input and calculates the result >
**[See a detailed explanation here](/PostfixCalc/README.md)** + ![](/PostfixCalc/postfixCalc.png) ``` Input: 134-9*2/+ @@ -50,7 +52,7 @@ Piet is an esoteric programming language, named after the artist Piet Mondrian, This calculator begins with a conversion to postfix (aka Reverse Polish Notation (RPN)) as it is significantly easier ***in Piet*** to calculate the value of a postfix expression rather than an infix one. -I initially imagined this calculator to be confined within a single image, instead of one program to convert from infix to postfix and another to calculate. However, after making significant progress on the former I realized without access to anotherr stack to store program output for later, this would be very difficult. +I initially imagined this calculator to be confined within a single image, instead of one program to convert from infix to postfix and another to calculate. However, after making significant progress on the former I realized without access to another stack to store program output for later, this would be very difficult. I do think it's feasible, but would require significant stack manipulation. Maybe it'll be a future endeavor... @@ -74,4 +76,4 @@ Please open issues to discuss bugs or ideas 😁 ## License -[MIT](https://choosealicense.com/licenses/mit/) \ No newline at end of file +[MIT](https://choosealicense.com/licenses/mit/)