/* Instructions
* Count the number of duplicates.
* Expected output (line order doesn't matter):
* Value 10 found 2 times.
* Value 5 found 3 times.
* Value 2 found 2 times.
* Value 3 found 1 times.
* Value 4 found 1 times.
* Value 6 found 1 times.
* Value 7 found 1 times.
* Value 8 found 1 times.
* Value 9 found 1 times.
* Value 11 found 1 times.
* Value 12 found 2 times.
*/
using System;
public class Program
{
static public void Main(string[] args)
int[] array = { 10, 5, 10, 2, 2, 3, 4, 5, 5, 6, 7, 8, 9, 11, 12, 12 };
/* TBC */
}