1106. Parsing A Boolean Expression
Problem Statement
A boolean expression is an expression that evaluates to either true or false. It can be in one of the following shapes:
't'that evaluates totrue.'f'that evaluates tofalse.'!(subExpr)'that evaluates to the logical NOT of the inner expressionsubExpr.'&(subExpr1, subExpr2, ..., subExprn)'that evaluates to the logical AND of the inner expressionssubExpr1, subExpr2, ..., subExprnwheren >= 1.'|(subExpr1, subExpr2, ..., subExprn)'that evaluates to the logical OR of the inner expressionssubExpr1, subExpr2, ..., subExprnwheren >= 1.
Given a string expression that represents a boolean expression, return the evaluation of that expression.
It is guaranteed that the given expression is valid and follows the given rules.
Example 1:
Input: expression = "&(|(f))"
Output: false
Explanation:
First, evaluate |(f) --> f. The expression is now "&(f)".
Then, evaluate &(f) --> f. The expression is now "f".
Finally, return false.Example 2:
Example 3:
Constraints:
1 <= expression.length <= 2 * 104expression[i] is one following characters:
'(',')','&','|','!','t','f', and','.
Intuition
Links
https://leetcode.com/problems/parsing-a-boolean-expression/description/
Video Links
https://www.youtube.com/watch?v=lYw86z7Astg&ab_channel=leetuition
Approach 1:
Approach 2:
Approach 3:
Approach 4:
Similar Problems
Last updated