show/hide this revision's text 3 Title

detect a Detect the number of unique values in the an array

show/hide this revision's text 2 typo, formatting, tags

Hi,

I am looking for an efficient way to detect a the number on of unique values in the an array.

My current approach:1.

  1. Quicksort array of integers 2. Then,run
  2. Then run a loop to compare elements.

In code:

  yearHolder := '';
  for I := 0 to  High(yearArray) do
  begin
    currYear := yearArray[i];
    if (yearHolder <> currYear) then
    begin
      yearHolder := currYear;
      Inc(uniqueYearNumber);
    end;
  end;
show/hide this revision's text 1

detect a number of unique values in the array

Hi, I am looking for an efficient way to detect a number on unique values in the array. My current approach: 1. Quicksort array of integers 2. Then,run a loop to compare elements.

yearHolder := '';
  for I := 0 to  High(yearArray) do
  begin
    currYear := yearArray[i];
    if (yearHolder <> currYear) then
    begin
      yearHolder := currYear;
      Inc(uniqueYearNumber);
    end;
  end;