Given a list of strings, return the longest common prefix that is shared among all strings. If there is no common prefix, return an empty string.
['flower', 'flow', 'flight', 'flee']
'fl'
Bot