Your question is Hard FizzBuzz Variation. 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.
Axon diagnostic tools can use compact labels when displaying numeric event sequences. Given an inclusive range of positive integers, generate one output for each number using digit presence rather than divisibility.
For each number:
Fizz if its decimal representation contains the digit 3.Buzz if its decimal representation contains the digit 5.FizzBuzz.The digit rule is independent of whether the number is a multiple of 3 or 5. For example, 30 produces Fizz because it contains 3, even though it is also a multiple of both.
Implement label_numbers(start, end), where start and end are positive integers and start <= end. Return a list of strings containing one result for every integer from start through end, inclusive. Preserve the input order.
def label_numbers(start, end):