Hulu Interview Question

Whiteboard: Design/code a URL shortener

Interview Answer

Anonymous

Apr 28, 2016

Designed it with encoding the full URL passed and saving it with the full URL on a LRU cache along with a database, the retrieval of full URL would happen by matching its encoded version to the actual full URL.

1