Assessment 4: Nested Loops and 2D arrays


Instructions

This assessment is designed to be completed in fifty minutes or less. Your code must work on any valid inputs to receive credit.

Complete the template below such that you will provide code to solve the following problem. When you are satisfied with your solution, you should upload your solution, you should upload it to Blackboard. Each assessment comes with test cases that you can run before submitting your assignment, so you know how you're doing on it.

Imagine that the user provides a two dimensional list. Return a one dimensional list that is the version of that original list where each row is the average of the original row. For example, if the user enters [[3, 1], [2, 4, 3], [], [1]], your code would return the array [2, 3, 0, 1]. Please do not use any Java code or libraries that we have not covered in class; this defeats the purpose of the assessment.

Code Template and Test cases

Download the code template.