sandeshsoni
Need help! need to optimize.
My terminal hangs when I run the code.
I have a list of 1_78_000 words i.e 178k words
I need pairs of words, such that when joined together, their length is exactly ten.
# this is how I get those 178k words from a file
# do I need to use streams here?
# Its just a txt file with one word per line
def all_words do
{:ok, content} = File.read("assets/dictionary.txt")
String.split(content, "\n", trim: true)
end
# Length of individial word must be 3 or more
# two words combined, their length must be exactly 10.
# example: moto + camera = motocamera
# I am sending `all_words` here.
def foo list
for a <- list, b <-list,
String.length(a) > 2 && String.length(b) > 2 && String.length(a <> b)==10,
do: a <> b
end
# do I need to add :into ?
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
I’m in search of an Elixir library that offers PDF generation capabilities similar to Ruby’s Prawn. While there have been discussions abo...
New
I’m looking to build a personal workflow to quickly deploy web applications written in elixir/phoenix, for local consumption (ie not on t...
New
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app?
Looking for hints regarding:
Addi...
New
Kia ora,
We have been using elixir-google-api to connect to Google Drive. However, with the updates to Tesla due to CVEs this is now bro...
New
Hi all, I wanted to ask how the community is dealing with post-release steps.
Today we have Ecto migrations, which make sure that the db...
New
Hello,
I have an Elixir backend that implements a custom protocol over TCP. I want to load test the backend and assess the performance o...
New
Other Trending Topics
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
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #phoenix_html
- #iex
- #graphql
- #ai
- #genstage
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #security
- #hex











First Post!
NobbZ
This operation is quadratic in its runtime as you state it. You might be able to shave a bit, if you filter shorter than 3 from the start, also it might help to generate
a <> bandb <> aat the same time when not using a comprehension but a recursive function only checking current word and tail of the input.If though this is an exercise on comprehensions, prefiltering is probably your best bet.
Most Liked
Ankhers
The reason this is taking so long is because you are traversing the list so many times (178,001 which is 31,684,178,000 elements to run through).
When you have that comprehension, you are basically doing the same as
So for each element in the list, you are actually traversing the entire list again.
What you may be able to do is reduce the list into a map with the key being the length of the word, and the values in a list. So you may end up with something like
Then you could just merge the numbers that equal 10. This should shrink your runtime a bit. There are probably ways to do this though.
NobbZ
This is how I mean it:
This is just a draft though, and still might have some room for optimisations, but at least it should be of O(n * log n) instead of O(n²).
Eiji
Here is how I have generated
178_000random “words” (just~r/[a-zA-Z]{1,11}/) with random length from 1 to 11:From this random input I have received
35_349_451combinations in average209seconds.Note: This time is much too big as I’m on my “standard” PC usage with web browser, code editor and video player.
Here is my example code:
I got
previous clausewarning, but it’s only because@target_lengthmodule attribute is set at compile time. Feel free to modify it as you wish. For sure I believe that it’s definitely possible to write better code - it’s just my typical “5 min” example as I don’t have much time now.Let me know what do you think about it.
Last Post!
Eiji
ah, now I better see your use case
Look that you can generate all cases for all
10-digitnumbers at compile time (with saving results toprivdirectory or database like:mnesia) and it would be then really easy and quick to fetch them.