— A function that replaces multiples of 3 with "fizz", multiples of 5 with "buzz", multiples of both 3 and 5 with "fizzbuzz" and leaves other numbers fixed.
— Given a list of integers, this function rearranges them so that all of the odd integers appear before all of the even integers, without otherwise changing the order.