In general, you can use this algorithm:
- Create a hash table that maps year to count of occurrences.
- For each number in your array, put a corresponding entry in a hash table.
- When done, get the number of entries in the hash.
However, in your case, your variables are named "year". If this is really a year, this is simpler, because years have a very limited range. Say, the range 0-3000 should be enough. So, instead of a hash table, you can use a simple array of counters. Initialize it with 0s. Then when you see the year 2009, increment the element arr[2009]. At the end, count the number of elements with arr[i] >= 1.
