Most Common Word
You're building a simple text-analysis tool. The function receives a string `text` and returns its most frequent word. A word is defined as a maximal run of letters and digits (case-insensitive); any other character (space, punctuation, newline) separates words. Return the most common word in lowerc
You're building a simple text-analysis tool. The function receives a string `text` and returns its most frequent word. A word is defined as a maximal run of letters and digits (case-insensitive); any other character (space, punctuation, newline) separates words. Return the most common word in lowerc