Imagine the user enters a list of integers. Return a new list where you add together every odd integer in the list, and return
this sum. For example, if the user enters [1, 1, 3, 4, 5] , you would return 10 .
Please do not use any Java code or libraries that we have not covered in class; this defeats the purpose of the
assessment. |