Your question is First Repeated Word in Paragraph. Start with the requirements on the right.
Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.
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.
def first_repeated_word(text):