Logo

Programming-Idioms

  • Dart
  • Pascal
  • Rust

Idiom #246 Count distinct elements

Set c to the number of distinct elements in the list items.

use itertools::Itertools;
let c = items.iter().unique().count();
var c = items.toSet().length;
uses classes;
function CountUniqueItems(Items: TStrings): Integer;
var
  List: TStringList;
begin
  List := TStringList.Create;
  List.Duplicates := dupIgnore;
  List.Sorted := True;
  List.AddStrings(Items);
  Result := List.Count;
  List.Free;
end;

begin
 ...
 c := CountUniqueItems(items);
 ...
end.

A generic function could be made as well.
(def items [1 2 3 4 4 5 5 5])

(def c (count (set items)))

Converting a collection to a set removes any duplicate elements.

New implementation...
< >
programming-idioms.org