| 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 | |
| 38 | # Edge Case: Handle negative numbers at the start |
| 39 | if expression.startswith("-"): |
| 40 | i = 1 |
| 41 | while i < len(expression) and (expression[i].isdigit() or expression[i] == ' '): |
| 42 | i += 1 |
| 43 | tokens.append(expression[:i]) |
| 44 | |
| 45 | while i < len(expression): |
| 46 | if expression[i] == ' ': |
| 47 | i += 1 |
| 48 | continue |
| 49 | |
| 50 | # Parse numbers |
| 51 | if expression[i].isdigit() or (expression[i] == '-' and (i == 0 or expression[i-1] == ' ')): |
| 52 | start = i |
| 53 | if expression[i] == '-': |
| 54 | i += 1 |
| 55 | while i < len(expression) and expression[i].isdigit(): |
| 56 | i += 1 |
| 57 | tokens.append(expression[start:i]) |
| 58 | # Parse operators |
| 59 | elif expression[i:].startswith("plus"): |
| 60 | tokens.append("plus") |
| 61 | i += 4 |
| 62 | elif expression[i:].startswith("minus"): |
| 63 | tokens.append("minus") |
| 64 | i += 5 |
| 65 | elif expression[i:].startswith("multiplied by"): |
| 66 | tokens.append("multiplied by") |
| 67 | i += 13 |
| 68 | elif expression[i:].startswith("divided by"): |
| 69 | tokens.append("divided by") |
| 70 | i += 10 |
| 71 | else: |
| 72 | # Edge Case: Unknown operations |
| 73 | raise ValueError("unknown operation") |
| 74 | |
| 75 | # Edge Case: Empty tokens list |
| 76 | if not tokens: |
| 77 | raise ValueError("syntax error") |
| 78 | |
| 79 | # Convert first token to number |
| 80 | try: |
| 81 | result = int(tokens[0]) |
| 82 | except ValueError: |
| 83 | # Edge Case: First token is not a number |
| 84 | raise ValueError("syntax error") |
| 85 | |
| 86 | i = 1 |
| 87 | while i < len(tokens): |
| 88 | # Edge Case: Expecting an operator but reached end |
| 89 | if i >= len(tokens): |
| 90 | raise ValueError("syntax error") |
| 91 | |
| 92 | operator = tokens[i] |
| 93 | i += 1 |
| 94 | |
| 95 | # Edge Case: Expecting a number but reached end |
| 96 | if i >= len(tokens): |
| 97 | raise ValueError("syntax error") |
| 98 | |
| 99 | try: |
| 100 | number = int(tokens[i]) |
| 101 | except ValueError: |
| 102 | # Edge Case: Expected a number but got something else |
| 103 | raise ValueError("syntax error") |
| 104 | |
| 105 | # Perform the operation |
| 106 | if operator == "plus": |
| 107 | result += number |
| 108 | elif operator == "minus": |
| 109 | result -= number |
| 110 | elif operator == "multiplied by": |
| 111 | result *= number |
| 112 | elif operator == "divided by": |
| 113 | # Edge Case: Division by zero |
| 114 | if number == 0: |
| 115 | raise ValueError("syntax error") # Following test expectations |
| 116 | result //= number # Integer division as per examples |
| 117 | else: |
| 118 | # Edge Case: Unknown operator (should not happen with current parsing) |
| 119 | raise ValueError("unknown operation") |
| 120 | |
| 121 | i += 1 |
| 122 | |
| 123 | # Edge Case: Consecutive operators |
| 124 | # This is handled by the parsing logic above - if we have "plus plus" for example, |
| 125 | # the second "plus" would be treated as a token, but when we try to convert it to int, it will fail |
| 126 | |
| 127 | return result |
| 128 | # Handled Edge Cases: Empty/None input, non-math questions, missing question mark, |
| 129 | # empty expression, negative numbers, unknown operations, |
| 130 | # first token not a number, missing operators/numbers, |
| 131 | # division by zero, consecutive operators |