How can design a TinyURL for a website? Design an algorithm and write sample code which generates TinyURL for a website.
Utilisateur anonyme
Take the URL and run it through a hash algorithm like md5 that can take arbitrary length input string and convert it to a fixed length hash value. Append the hash value to tinyurl like "http://tinyurl.com/".