You are given a string S. Write a function that finds the longest substring that occurs at least twice in S. Occurrences may overlap. In the case of multiple substrings of the same maximum length, you can return any one of them. If no such substring exists, return an empty string.
Example:
banana
ana
(since "ana" occurs twice and is one of the longest repeated substrings)Constraints:
Your solution should aim for efficiency given the constraints.