Radware interview question

Design an excel like system in java

Interview Answer

Anonymous

2 Jun 2025

Map of cell id -> cell object. Multiple cells types extends an abstract cell. Formula cell track a list of dependency cells. Each cell should notify cells that are depended on it on value change (Observable pattern)

1