/*
Write a function that returns the count of elements in an integer array that are the same value as the average of their neighbors.
You can assume that for the first element and last element in the array you can use a zero for one of the neighbors without needing to modify the test array
e.g. [1,2,3,6] -> 2:
Good Luck!
*/
using System;
public class Program
{
public static void Main()
Console.WriteLine(GetCount(new int[]{1, 2, 3, 6}));
}
public static int GetCount(int[] testArray)
return 0;