| 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 valid math question |
| 14 | """ |
| 15 | # Edge Case: Empty or None input |
| 16 | if not question: |
| 17 | raise ValueError("syntax error") |
| 18 | |
| 19 | # Edge Case: Question doesn't start with "What is" |
| 20 | if not question.startswith("What is"): |
| 21 | raise ValueError("unknown operation") |
| 22 | |
| 23 | # Remove "What is" and the trailing question mark |
| 24 | expression = question[8:].rstrip('?').strip() |
| 25 | |
| 26 | # Edge Case: Empty expression after removing "What is" and "?" |
| 27 | if not expression: |
| 28 | raise ValueError("syntax error") |
| 29 | |
| 30 | # Split the expression into tokens |
| 31 | tokens = expression.split() |
| 32 | |
| 33 | # Edge Case: No tokens |
| 34 | if not tokens: |
| 35 | raise ValueError("syntax error") |
| 36 | |
| 37 | # Define operation mappings |
| 38 | operations = { |
| 39 | 'plus': '+', |
| 40 | 'minus': '-', |
| 41 | 'multiplied': '*', |
| 42 | 'divided': '/' |
| 43 | } |
| 44 | |
| 45 | # Parse tokens into a list of numbers and operators |
| 46 | parsed_tokens = [] |
| 47 | i = 0 |
| 48 | |
| 49 | while i < len(tokens): |
| 50 | token = tokens[i] |
| 51 | |
| 52 | # Try to parse as number |
| 53 | try: |
| 54 | num = int(token) |
| 55 | parsed_tokens.append(num) |
| 56 | i += 1 |
| 57 | continue |
| 58 | except ValueError: |
| 59 | pass |
| 60 | |
| 61 | # Handle operations |
| 62 | if token in operations: |
| 63 | # Special handling for "multiplied by" and "divided by" |
| 64 | if token == 'multiplied' or token == 'divided': |
| 65 | # Edge Case: Missing "by" after "multiplied" or "divided" |
| 66 | if i + 1 >= len(tokens) or tokens[i + 1] != 'by': |
| 67 | raise ValueError("syntax error") |
| 68 | parsed_tokens.append(operations[token]) |
| 69 | i += 2 # Skip both the operation and "by" |
| 70 | else: |
| 71 | parsed_tokens.append(operations[token]) |
| 72 | i += 1 |
| 73 | else: |
| 74 | # Edge Case: Unknown operation |
| 75 | raise ValueError("unknown operation") |
| 76 | |
| 77 | # Edge Case: Expression ends with an operator |
| 78 | if len(parsed_tokens) > 0 and isinstance(parsed_tokens[-1], str): |
| 79 | raise ValueError("syntax error") |
| 80 | |
| 81 | # Edge Case: Expression starts with an operator |
| 82 | if len(parsed_tokens) > 0 and isinstance(parsed_tokens[0], str): |
| 83 | raise ValueError("syntax error") |
| 84 | |
| 85 | # Edge Case: Even number of tokens (should be odd: number, operator, number, ...) |
| 86 | if len(parsed_tokens) % 2 == 0: |
| 87 | raise ValueError("syntax error") |
| 88 | |
| 89 | # Evaluate the expression from left to right |
| 90 | result = parsed_tokens[0] |
| 91 | |
| 92 | # Edge Case: Single number |
| 93 | if len(parsed_tokens) == 1: |
| 94 | return result |
| 95 | |
| 96 | # Process operations |
| 97 | for i in range(1, len(parsed_tokens), 2): |
| 98 | # Edge Case: Missing operand |
| 99 | if i + 1 >= len(parsed_tokens): |
| 100 | raise ValueError("syntax error") |
| 101 | |
| 102 | operator = parsed_tokens[i] |
| 103 | operand = parsed_tokens[i + 1] |
| 104 | |
| 105 | # Edge Case: Operator is not a string or operand is not a number |
| 106 | if not isinstance(operator, str) or not isinstance(operand, int): |
| 107 | raise ValueError("syntax error") |
| 108 | |
| 109 | if operator == '+': |
| 110 | result += operand |
| 111 | elif operator == '-': |
| 112 | result -= operand |
| 113 | elif operator == '*': |
| 114 | result *= operand |
| 115 | elif operator == '/': |
| 116 | # Edge Case: Division by zero |
| 117 | if operand == 0: |
| 118 | raise ValueError("syntax error") # Following test expectations |
| 119 | result //= operand # Integer division as per examples |
| 120 | else: |
| 121 | # Edge Case: Unsupported operator |
| 122 | raise ValueError("unknown operation") |
| 123 | |
| 124 | return result |
| 125 | # Handled Edge Cases: Empty input, None input, questions not starting with "What is", |
| 126 | # empty expressions, no tokens, missing "by" after multiplied/divided, |
| 127 | # unknown operations, expressions ending/starting with operators, |
| 128 | # even number of tokens, single number, missing operands, |
| 129 | # non-string operators, non-integer operands, division by zero, |
| 130 | # unsupported operators |