Skip to content

Instantly share code, notes, and snippets.

View devyashtanwar's full-sized avatar

Devyash Tanwar devyashtanwar

View GitHub Profile
@devyashtanwar
devyashtanwar / gist:d6232b492687e208d80c59f1ec4f4f54
Created September 19, 2025 18:13
Leetcode 3484. Design Spreadsheet
class Spreadsheet {
public:
unordered_map <string, int> sheet;
Spreadsheet(int rows) {}
void setCell(string cell, int value) {
sheet[cell] = value;
}
void resetCell(string cell) {