e le 404 2 Write a function named get_max_multiple_of_3(numbers) which takes a list of integers as a parameter and retur
Posted: Sat May 14, 2022 2:34 pm
e le 404 2 Write a function named get_max_multiple_of_3(numbers) which takes a list of integers as a parameter and returns the largest multiple of 3 in the list. The function should return Oif there are no multiples of 3 in the list or the list is empty. For example: Finish attempt Test Result 9 8 numbers [1, 4, 5, 9, -2, -10] print(get_max_multiple_of_3(numbers)) numbers = [2,1,4,5) print(get_max_multiple_of_3(numbers)) numbers [1, -3, 5) print (get_max_multiple_of_3(numbers)) -3 5 10 15 20 25 30 35.40.45, 50 %)