Amazon Interview Question

Design a system to store an HTML page in memory such that each ID is guaranteed to apply to a single HTML element.

Interview Answer

Anonymous

Mar 14, 2010

Essentially the DOM with a Hash Table to check IDs.

1