Intel Corporation Interview Question

Design a URL shortening service like bit.ly

Interview Answer

Anonymous

Jul 25, 2024

Create a service with a database to store original URLs and their shortened counterparts. Use a hash function to generate unique short URLs. Implement a redirection service to map short URLs back to the original ones. Ensure scalability with load balancing and distributed databases.