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
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!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
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
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
apply_graft/2 doesn’t rewrite an add_many sub-workflow’s deps on an add step. Grafted jobs cancel with “upstream job was deleted”
Version...
New
Other Trending Topics
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
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
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
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
- #elixirconf-us
- #blog-post
- #ai
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming











Showing Posts 1 to 9- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
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.
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.
sandeshsoni
can you please elaborate more in terms of code?
I tried this using the same code with a list of 1k words… it worked.
But for a large list, terminal just stops forever
sandeshsoni
looks helpful!
I was thinking of a map… your suggestion of string length as map key sounds useful.
I will give this a try!
NobbZ
It’s not forever, just for a very long time.
If it takes a second for a thousand element list, it will take 4 for a list of two thousand elements, 16 for 4k, etc.
And I will provide some code when I’m at my computer.
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.
sandeshsoni
Thank you both for comments.
After reading all the comments,
This is what I came to
– Iterate words from dictionary
– Enum.group them by word.length
– Next, using comprehension, join them where the length == 10
– In my case I had to match word, so,
– – if word is at beginning length is key,
– – else if word is at end then key is -(10 - length)
The actual problem statement to me is, create word pairs for given_input_phone_number using dictionary words.
Here is some of the code.
complete problem solution is here.
https://github.com/sandeshsoni/code_samples/blob/master/elixir/numbero/lib/numbero.ex
I know there is room for performance optimisation.
Right now it takes around 10sec to complete execution.
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.