Given a list of strings, return a new list where the strings are sorted in increasing order by their last letter.
['banana', 'apple', 'cherry', 'date']
['apple', 'cherry', 'banana', 'date']
Bot