You have an string including words and characters that describes a boolean expression.
The words in the string may include one of the following four options
1. "true"
2. "false"
3. "&"
4. "|"
"true"
"false & true & false"
"true | true & false"
"false & true"
Write a function that recieves this type of string and returns the evaluation of the string's boolean expression
Solution: