Interview Guides
Given a string text, return the first word that repeats when scanning from left to right. Comparison should be case-insensitive, and punctuation should be ignored. If no word repeats, return an empty string.
1 <= len(text) <= 10^5text contains letters, digits, spaces, and punctuation