| 1 | 1 | def answer(question: str) -> int: |
| 2 | | pass |
| 2 | """ |
| 3 | Parse and evaluate a simple math word problem. |
| 4 | |
| 5 | Args: |
| 6 | question: A string representing a math word problem |
| 7 | |
| 8 | Returns: |
| 9 | int: The result of evaluating the math expression |
| 10 | |
| 11 | Raises: |
| 12 | ValueError: If the question is malformed, contains unsupported operations, |
| 13 | or is not a math question |
| 14 | """ |
| 15 | # Edge Case: Empty or None input |
| 16 | if not question: |
| 17 | raise ValueError("syntax error") |
| 18 | |
| 19 | # Edge Case: Non-math questions |
| 20 | if not question.startswith("What is"): |
| 21 | raise ValueError("unknown operation") |
| 22 | |
| 23 | # Edge Case: Malformed questions without a question mark |
| 24 | if not question.endswith("?"): |
| 25 | raise ValueError("syntax error") |
| 26 | |
| 27 | # Remove "What is" and "?" to get the expression |
| 28 | expression = question[8:-1].strip() |
| 29 | |
| 30 | # Edge Case: Empty expression after removing "What is" and "?" |
| 31 | if not expression: |
| 32 | raise ValueError("syntax error") |
| 33 | |
| 34 | # Tokenize the expression |
| 35 | tokens = [] |
| 36 | i = 0 |
| 37 | while i < len(expression): |
| 38 | if expression[i].isspace(): |
| 39 | i += 1 |
| 40 | continue |
| 41 | |
| 42 | # Handle negative numbers |
| 43 | if expression[i] == '-' and (i == 0 or expression[i-1] in ' '): |
| 44 | i += 1 |
| 45 | if i >= len(expression) or not expression[i].isdigit(): |
| 46 | raise ValueError("syntax error") |
| 47 | num_start = i - 1 |
| 48 | while i < len(expression) and (expression[i].isdigit() or expression[i] == '.'): |
| 49 | i += 1 |
| 50 | tokens.append(int(expression[num_start:i])) |
| 51 | continue |
| 52 | |
| 53 | # Handle positive numbers |
| 54 | if expression[i].isdigit() or (expression[i] == '-' and i < len(expression) - 1 and expression[i+1].isdigit()): |
| 55 | num_start = i |
| 56 | if expression[i] == '-': |
| 57 | i += 1 |
| 58 | while i < len(expression) and (expression[i].isdigit() or expression[i] == '.'): |
| 59 | i += 1 |
| 60 | tokens.append(int(expression[num_start:i])) |
| 61 | continue |
| 62 | |
| 63 | # Handle operators |
| 64 | if expression[i:].startswith("plus"): |
| 65 | tokens.append("+") |
| 66 | i += 4 |
| 67 | elif expression[i:].startswith("minus"): |
| 68 | tokens.append("-") |
| 69 | i += 5 |
| 70 | elif expression[i:].startswith("multiplied by"): |
| 71 | tokens.append("*") |
| 72 | i += 13 |
| 73 | elif expression[i:].startswith("divided by"): |
| 74 | tokens.append("/") |
| 75 | i += 10 |
| 76 | else: |
| 77 | # Edge Case: Unsupported operations |
| 78 | raise ValueError("unknown operation") |
| 79 | |
| 80 | # Edge Case: Expression with just a number |
| 81 | if len(tokens) == 1 and isinstance(tokens[0], int): |
| 82 | return tokens[0] |
| 83 | |
| 84 | # Edge Case: Invalid syntax - even number of tokens or starts/ends with operator |
| 85 | if len(tokens) % 2 == 0 or not tokens or not isinstance(tokens[0], int) or not isinstance(tokens[-1], int): |
| 86 | raise ValueError("syntax error") |
| 87 | |
| 88 | # Evaluate the expression from left to right |
| 89 | result = tokens[0] |
| 90 | i = 1 |
| 91 | |
| 92 | # Edge Case: Malformed expression with consecutive operators |
| 93 | while i < len(tokens): |
| 94 | if i + 1 >= len(tokens): |
| 95 | raise ValueError("syntax error") |
| 96 | |
| 97 | operator = tokens[i] |
| 98 | operand = tokens[i + 1] |
| 99 | |
| 100 | # Edge Case: Non-integer operand |
| 101 | if not isinstance(operand, int): |
| 102 | raise ValueError("syntax error") |
| 103 | |
| 104 | if operator == "+": |
| 105 | result += operand |
| 106 | elif operator == "-": |
| 107 | result -= operand |
| 108 | elif operator == "*": |
| 109 | result *= operand |
| 110 | elif operator == "/": |
| 111 | # Edge Case: Division by zero |
| 112 | if operand == 0: |
| 113 | raise ValueError("syntax error") |
| 114 | result //= operand # Integer division as per examples |
| 115 | else: |
| 116 | # Edge Case: Unknown operator (should not happen with current parsing) |
| 117 | raise ValueError("syntax error") |
| 118 | |
| 119 | i += 2 |
| 120 | |
| 121 | return result |
| 122 | # Handled Edge Cases: Empty input, None input, non-math questions, missing question mark, |
| 123 | # empty expression, unsupported operations, invalid syntax, |
| 124 | # consecutive operators, non-integer operands, division by zero, |
| 125 | # expressions with just a number, malformed expressions |