Given a list of strings, write a function to return the strings that have a length of 3 or more and end with the letter 's'.
['dogs', 'cats', 'birds', 'elephants', 'snakes']
['dogs', 'cats', 'birds', 'snakes']
Bot