Explain how you would design a link shortener
Sigiloso
Assuming we're talking about hyperlinks, we could implement a GUID generator that uses only legal link characters, e.g. no dashes, with sufficient length to ensure a measure of uniqueness without creating unnecessary length. Details could include implementing a function that takes information about the resource as a string, such as the title, and returns the GUID as a string. The function would use rand...