Given a list of strings, write a function to find the longest common prefix string amongst them.
['flower', 'flow', 'flight', 'flee']
'fl'
Bot