Given a list of strings, write a function to return the strings that have at least one character repeated consecutively at least 3 times.
['hello', 'goodbye', 'success', 'apple', 'banana']
['hello', 'success']
Bot