Ryzey
I know that uniq/1 & uniq_by/2 return a list of unique values, but what is the best way to get a list of duplicate values?
I noticed that the code for uniq & uniq_by could easily collect a list of duplicates while unique values are collected; so I copied this code and modified it to return a tuple with a list of unique values and a list of duplicates.
But have I missed some existing functionality to do this?
Trending in Questions
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
Hi everyone,
I am toying with the idea of building a “match maker” for giving personal help to people that wants to start coding.
I sta...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
I’m new to elixir and just tried to install the elixirLS extension for VScode(ium) and it is throwing some errors that I would like help ...
New
Other Trending Topics
Rheo gives you consumer groups (leases, ACK, retry, dead letters, partitions, lag) for various storage backends:
Mnesia (single-node `...
New
Edit: 2026 May 15 - This post is archived.
Mob is alive!!
Main docs: mob v0.7.11 — Documentation
A bit of explanation for the slightly c...
New
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #ai
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #elixirconf-eu
- #metaprogramming
- #hex










Showing Posts 6 to 1- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
al2o3cr
FWIW, that approach can have bad performance for specific inputs.
For instance, imagine passing it a large list of already-unique values - it will
List.deletethem one at a time, traversing the entire list each time. Quadratic slowdown!Here’s an alternative approach that uses
MapandEnum.frequencies:One caveat: this version does not make any promises about the order that the duplicates appear in, while the version in your post will return them in order of their first appearance in the input.
7rans
Just had a need for this and coded it up like so:
Ryzey
Thanks @nobbz and @jfeng for taking the time to look at this.
I copied the
uniq/1anduniq_by/2code and modified slightly to come up with the following:It returns a tuple containing a list of unique values and a list of duplicated values. I could have made it more efficient by only returning duplicates (it’s about 20% slower than Enum.uniq).
The benefit of this approach is that it returns all duplicate elements in the original order. Given
[2, 2, 2, 1, 1]your solutions will return[1, 2]as the duplicates. My (copied) solution will return[2, 2, 1]which can then be run throughEnum.uniq/1orEnum.sort/1if required. Your solution results appear in sort order for smaller lists and appear to be in a random order for longer lists.Because I copied
uniq_by/2functionality, given a list of maps[%{id: 1, name: "a"}, %{id: 2, name: "b"}, %{id: 3, name: "b"}, %{id: 4, name: "b"}]my (copied) solution can return all elements with a duplicated name for example[%{id: 3, name: "b"}, %{id: 4, name: "b"}]. I only copied the functionality for lists and not other enumerables.As could be expected, given I copied it from the Elixir source code, my implementation is quite efficient compared to your solutions. Below are some Benchee benchmarks using a random list of 1000 integers between 0 and 99 (from StreamData). I assume I could match the efficiency of
Enum.uniq/1if I only returned duplicates, instead of unique values and duplicates.It would be nice to have a standard implementation of this so that duplicates could be retrieved in an efficient and consistent way. It seems like missing functionality when unique values can be easily obtained. I guess looking for unique values must be a lot more common that looking for duplicates!
lackac
I’m not sure if you’re aware, we have the excellent
match?/2macro for these cases:or if you want to make it more descriptive:
(although
is_list(list)shouldn’t be necessary in this case)jfeng
Agree with NobbZ, I don’t know of any built in functionality for this.
The most efficient way I know to do it is what it sounds like you’ve already done:
NobbZ
Nope. And I have never missed a function that returns the duplicates. If I really have need to know count or duplicates, I usually just do something like this (even though its probably not the most efficient way):