Be concise.
Be useful.
All contributions dictatorially edited by webmasters to match personal tastes.
Please do not paste any copyright violating material.
Please try to avoid dependencies to third-party libraries and frameworks.
- C#
- Python
- Python
- Python
- Python
- Clojure
- Dart
- Elixir
- Go
- Go
- Haskell
- JS
- Java
- Kotlin
- Lua
- PHP
- Pascal
- Perl
- Ruby
- Rust
c = len(set(items))
c = len({*items})
c = 0
for a, x in enumerate(items):
if x not in items[a + 1:]:
c = c + 1
c = []
for x in items:
if x not in c:
c.append(x)
c = len(c)
(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.
c = items |> Enum.uniq |> length
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 ==
const c = new Set(items).size;
local c=#items
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.
c = items.uniq.count