newbie1
Hi, I have an array of structs:
array = [%{count: 1, img: 1}, %{count: 1, img: 2}, %{count: 3, img: 3},
%{count: 1, img: 4}]```
What i want is return the struct with minimum value. if there is more than 1 struct which contains minimum value like “1” it should return all of them. in this case it should return:
array = [%{count: 1, img: 1}, %{count: 1, img: 2}, %{count: 1, img: 4}]
The check is on “count”
Thanks in advance
Trending in Questions
I having some trouble figuring out if I have set myself too strict of standards for my production server. Currently I can handle 75% of r...
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
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 everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
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
- #elixirconf-eu
- #api
- #forms
- #metaprogramming
- #hex










Showing Posts 1 to 7- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
peerreynders
A list of maps actually …
There is a
Enum.min_by/3but that returns only a single value. But all these functions are linked to the source so you can find out how that works - it turns out that it is based on -Lists.foldl/3- a function you can use to solve your problem (orEnum.reduce/3).Now both
reduceandfoldlwork on an accumulator value - my choice would be a tuple like(min_value, [maps_with_min_value]). So every time a new element of the list is inspected a decision has to be made:min_value? If yes, start a new list for the new min value resulting in a tuple(new_min_value, [map_with_new_min_value])min_value? If yes, add the new map to the list, i.e.(min_value,[new_map| others])Note also that you should also account for being handed an empty list - i.e. there is no minimum - then the resulting list should simply be empty. But if there are any maps to process in the list you simply take the first map as your initial minimum for the accumulator and process the remainder of the list with
foldlorreduce.PS: With pattern matching you can just use the list as an accumulator (i.e. peek inside the first element of the list rather than holding
min_valueseparately).workin4dmiddleclass
I think peerreynders gave the most professional answer.
You can use this function,
in your case put in your
and
:countas arguments and it should work.I’m sure there’s a more elegant way to solve your problem, this is just what I came up with.
OvermindDL1
If you want it to output in exactly the same output as you stated (so the same order as the original) then I’d just do this:
peerreynders
It’s worth noting that this approach relies on term ordering:
i.e. because
nilis actually:nil(i.e. an atom)is always
trueOvermindDL1
Correct, this is precisely one of the aspects I was using.
/me often compares a number to an atom in such cases, it is very convenient, an old habit from erlang…
I actually originally typed
:infinitethere as that is what I usually do from erlang, butnilI figured is more understandable for Elixir’ians as:infinitecould be deemed as magical when it is not. ^.^jfeng
Another option for your entertainment:
edit Hah, teaches me to skim too quickly, looks like thats pretty much exactly what peerreynders described but without dealing with empty lists. Here’s a better recursive version:
xoron
Here Simple solution not for used just for practice.Suggest any improvement.
Please Confirm that recursion tail call applied and idiomatic code thanks.