Your question is FizzBuzz and String Processing. 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.
For an Epsilon Systems coding utility, implement a function that performs three independent operations: generate FizzBuzz labels, find the first non-repeated alphanumeric character, and reverse the order of words in a text string.
Implement coding_pipeline(text, n). Return a dictionary with these keys:
fizzbuzz: A list of strings for every integer from 1 through n. Use "Fizz" for multiples of 3, "Buzz" for multiples of 5, "FizzBuzz" for multiples of both, and the decimal number otherwise.first_unique: The first alphanumeric character that occurs exactly once in text, compared case-insensitively. Return the character in lowercase, or None if no such character exists. Ignore spaces and punctuation.reversed_words: The words from text in reverse order, joined with one space. Any leading, trailing, or repeated whitespace should be normalized.def coding_pipeline(text, n):