← 返回 openai 的题目列表Excel Sheet Operation
类型:online_judge
Design a program that can parse an Excel sheet and perform calculations. Users can input formulas such as 'A1 + B2', and the program should output the result. Data is provided in the following structure: {'A1': 5, 'B2': 3,...}. Support standard operations like addition, subtraction, multiplication, and division.
Example
Input
A1+B2