Problem Description
Design a spreadsheet with 26 columns (labeled from 'A' to 'Z') and a specified number of rows. Each cell can hold an integer value between 0 and 10^5. Implement the Spreadsheet
class with methods to set a cell's value, reset a cell to zero, and evaluate simple formulas of the form "=X+Y".
Key Insights
- The spreadsheet consists of a fixed number of columns (26) and a variable number of rows.
- Cells are referenced by a combination of a letter (column) and a number (row), e.g., "A1".
- Formulas can consist of integers or cell references and must be evaluated correctly.
- Default values for cells that haven't been set are considered as 0.
Space and Time Complexity
Time Complexity:
- O(1) for setCell and resetCell since they perform direct assignments.
- O(1) for getValue as it involves simple string parsing and conditional checks. Space Complexity:
- O(rows) for storing cell values, where rows is the number of rows in the spreadsheet.
Solution
To implement the Spreadsheet
class, we can use a 2D array (or a dictionary) to store the values of the cells. Each cell can be accessed using its column and row indices, derived from the cell reference (e.g., "A1" translates to column 0 and row 0). The setCell
method updates the value in the array, resetCell
sets the value to zero, and getValue
parses the formula to compute and return the result using arithmetic operations on either integers or the values stored in the cells.