PARANTHESIS CHECKER IMPLEMENTATION USING PYTHON - STACK APPLICATON👩💻👨💻
In this post, we are going to see one of the stack application's implementations which is a parenthesis checker and also the stack has several other applications like
🎯 Reverse a string,
🎯 Undo mechanism in editors,
🎯 Recursion,
🎯 Expression conversion, and so on.
Here, I am using the 'queue' module to implement the stack in python. You can implement the stack without using the 'queue' module and you can check out herex
Code😃 :
I hope it will help you😊
Comments