Implementation of FA
In this project we simply implemented a FA (finite automata) with regular expression (a + b)*a(a + b) in python. This regular expression means that it will only accept a input string if its length is greater than two and second last input string is a.
- The file is python file so any IDE which run python file is required.
I took the sample code from geekstogeeks website and changed it into my own regular expression.