About this question
Easy · mle_slice · Quant Developer interview question · mle-slice
Given a list of integers nums, return a list of strings where each element is tagged: - "fizzbuzz" if it is divisible by 15 - "fizz" if it is divisible by 3 - "buzz" if it is divisible by 5 - otherwise, the decimal string of the number itself Example: nums = 1, 3, 5, 15 returns "1", "fizz", "buzz", "fizzbuzz".
Keep practicing