| Problem | spreadsheet |
|---|---|
| User | RaphaelTanKaiJie1000 |
| Submission Time | 2025-06-19 09:30:20 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
spreadsheet.cpp: In function ‘int getValue(const string&)’:
spreadsheet.cpp:6:12: error: ‘value’ was not declared in this scope
6 | return value[s];
| ^~~~~
spreadsheet.cpp: In function ‘int main()’:
spreadsheet.cpp:31:17: error: ‘value’ was not declared in this scope
31 | value[name] = stoi(content);
| ^~~~~
spreadsheet.cpp:37:21: error: ‘adj’ was not declared in this scope
37 | adj[token].push_back(name);
| ^~~
spreadsheet.cpp:38:21: error: ‘indegree’ was not declared in this scope
38 | indegree[name]++;
| ^~~~~~~~
spreadsheet.cpp:47:28: error: ‘adj’ was not declared in this scope
47 | for (string& nei : adj[curr]) {
| ^~~
spreadsheet.cpp:48:13: error: ‘value’ was not declared in this scope
48 | value[nei] += va