using System;
/*
INSTRUCTION:
Given an array of integers, calculate the sum and average of the array
Also give a count and sum of each unique number in the array, a sample output is provided below.
SAMPLE CONSOLE OUTPUT
==================
Sum: 55
Average: 5.5
Number of 1s: 1
Sum of 1s: 1
Number of 2s: 1
Sum of 2s: 2
et al
*/
public class Solution
{
public static void Main(string[] args)
var input = new int[] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
//Other possible examples...
//new int[] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
//new int[] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 3, 6, 87, 4, 2, 6, 34, 1 };
//new int[] { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 };
//new int[] { 1, -1, 1, -1, 1, -1, 1, -1, 1, -1, 1, -1, 1, -1, 1, -1, 1, -1, 1, -1 };
/* YOUR CODE TO GO HERE */
}