Design an excel sheet
void set(string cell, string value); // cell can be A1, B2. value can be like "10", "1" or even excel formulae like "=9+10" and "=-1+-10+2"
void reset(string cell); // reset the cell
void print(); // print all the cells along with their raw and computed values
Follow up
Extend solution to support values like "=A1+10" where A1 is a cell name