1) (20 points) Write a function that takes a list of integer numbers and returns a list with [ [odd numbers], [even numbers], sum of odd, sum of even ] results So calling the function with the list \( [11,12,23,34,45,56,67,78,89,100] \) as argument , you'll get back \( [12,34,56,78,100],[12,34,56,78,100], 235,280] \) in return \( \mathrm{Eg} \) original list: \( [11,12,23,34,45,56,67,78,89,100] \) \( [[11,23,45,67,89],[12,34,56,78,100], 235,280] \) You have to write codes to call this function to generate the results (hint: From a provided list of numbers: - sort the list based on even or odd, - build a new list that contains [ [odd numbers], [even numbers], sum of odd, sum of even ]