Logo

Programming-Idioms

  • Go
  • Python

Idiom #246 Count distinct elements

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

c = 0
for a, x in enumerate(items):
    if x not in items[a + 1:]:
        c = c + 1
c = len({*items})
c = []
for x in items:
    if x not in c:
        c.append(x)
c = len(c)
c = len(set(items))
func count[T comparable](items []T) int {
	distinct := make(map[T]bool)
	for _, v := range items {
		distinct[v] = true
	}
	return len(distinct)
}

The type parameter T has a constraint: it must be comparable with ==
distinct := make(map[T]bool)
for _, v := range items {
	distinct[v] = true
}
c := len(distinct)

This assumes the type T is comparable with ==
(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