1440. Evaluate Boolean Expression
Description
+---------------+---------+
| Column Name | Type |
+---------------+---------+
| name | varchar |
| value | int |
+---------------+---------+
name is the primary key for this table.
This table contains the stored variables and their values.
+---------------+---------+
| Column Name | Type |
+---------------+---------+
| left\_operand | varchar |
| operator | enum |
| right\_operand | varchar |
+---------------+---------+
(left\_operand, operator, right\_operand) is the primary key for this table.
This table contains a boolean expression that should be evaluated.
operator is an enum that takes one of the values ('<', '>', '=')
The values of left\_operand and right\_operand are guaranteed to be in the Variables table.ac
Previous1439. Find the Kth Smallest Sum of a Matrix With Sorted RowsNext1441. Build an Array With Stack Operations
Last updated