Given a list of strings, write a function to find the longest common prefix among them. If there is no common prefix, return an empty string.
['flower', 'flow', 'flight', 'flee']
'fl'
Bot