show/hide this revision's text 4 formatting

In general, you can use this algorithm:

  1. Create a hash table that maps year to count of occurrences.
  2. For each number in your array, put a corresponding entry in a hash table.
  3. 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.

show/hide this revision's text 3 deleted 22 characters in body

In general, you can use this algorithm: Create a hash table that maps year to count of occurrences. For each number in your array, increment the countput a corresponding entry in a hash table. When done, iterate through the hash table and count get the number of elements having count == 1entries 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.

show/hide this revision's text 2 added 14 characters in body

In general, you can use this algorithm. : Create a hash table that maps year to count of occurencesoccurrences. For each number in your array, increment the count. When done, iterate through the hash table and cound count the number of elements with having count == 1.

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 count arr[i] == 1.

show/hide this revision's text 1