Instruction
Let's take a look at Question 1!
Exercise
Create a function named count_stats(input_data), which accepts a 2-dimensional list with numerical elements and returns a tuple with the following three items:
(minimum list value, maximum list value, sum of all values)
You can use the sample data to test your function.



