Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jerald-jacob/spreadsheetengine
A repository containing a Java implementation of a spreadsheet engine with support for updating and retrieving cell values.
https://github.com/jerald-jacob/spreadsheetengine
Last synced: 4 days ago
JSON representation
A repository containing a Java implementation of a spreadsheet engine with support for updating and retrieving cell values.
- Host: GitHub
- URL: https://github.com/jerald-jacob/spreadsheetengine
- Owner: jerald-jacob
- Created: 2023-02-09T04:41:52.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2023-02-09T08:49:41.000Z (almost 2 years ago)
- Last Synced: 2024-04-13T20:50:39.317Z (7 months ago)
- Language: Java
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SpreadsheetEngine
A repository containing a Java implementation of a spreadsheet engine with support for updating and retrieving cell values.Design a spreadsheet backend which can support two operations:
void setCellValue(String cellId, Object value)
int getCellValue(String cellId)
## Example:
setCellValue("A1", 13)
setCellValue("A2", 14)
getCellValue("A1") -> 13
setCellValue("A3", "=A1+A2")
getCellValue("A3") -> 27
setCellValue("A4", "=A1+A2+A3")
getCellValue("A3") -> 54