Your task is to write a program that calculates the average value of a collection. You will implement a function to find the average value.
Python
def find_average(collection): # code here
C#
double FindAverage(int[] collection){ // code here}
// -or-
double FindAverage(List<int> collection){ // code here}