Skip to content

Instantly share code, notes, and snippets.

View saulbensach's full-sized avatar
🎯
Focusing

Saúl (Hyphen) Bensach saulbensach

🎯
Focusing
View GitHub Profile
# implementation of https://arxiv.org/pdf/2301.10191 in Elixir :)
# uses ets so it does not copies to much when testing the set.
```elixir
defmodule Distinct do
def run() do
items = for i <- 1..500, do: Enum.random(1..400)
error = 0.01
confidence = 0.001