ConnorRigby
Nerves Core Team
SPOILERS AHEAD DON’T CONTINUE IF YOU PLAN ON DOING THE CHALLENGE
I always start Advent of Code, then forget about half way through the month. I really hope to finish this year, but i think i cheated on part two of December 2.
The challenge is to compare strings and find the one that has but one letter change between strings.
here is what i came up with.
Basically it boils down to:
case String.myers_difference(string, check) do
[eq: pt1, del: <<_>>, ins: <<_>>, eq: pt2] -> pt1 <> pt2 # the answer.
_ -> false # move on to the next one.
end
I haven’t looked at anyone else’s implementation of this one yet, but i know this isn’t the intended method of solving this. It got me thinking though: does anyone else try to solve these questions in “illegal” ways?
Trending in Discussions
As the title says, please share what you’ve been up to with Elixir. Whether that’s been learning it, looking into it, making stuff with i...
New
Hey there,
It’s been more than a year since we started using LiveView as our main UI library and building a whole library of UI componen...
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
Quite interesting article Google brought me. Didn’t find any mentions about it here.
What do you think in general? Would you use togethe...
New
:warning: Security advisory: Decimal DoS vulnerability
A vulnerability has been published for decimal where very large exponents can cau...
New
It would be helpful to have a list of companies worldwide that hire engineers without prior experience in Elixir. Often, it can be quite ...
New
Anyone running long-lived stateful processes on BEAM? We’re building an AI agent runtime and would love to compare notes.
We’re a small ...
New
Other Trending Topics
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
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself.
My main conc...
New
Aludel - LLM Evaluation Workbench
Aludel is an embeddable Phoenix LiveView dashboard for evaluating and comparing LLM prompts across mult...
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
- #hex
- #security
- #metaprogramming











Showing Posts 1 to 8- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
yawaramin
You mean did we take full advantage of the language syntax and semantics? Yup!
I did something similar to you, see my post for more details: Advent Of Code 2018 - #19
dbern
I was comparing with a JavaScript developer’s solution, and ya… Elixir is really nice
I don’t feel like I cheated, but I definitely felt like I had it easier.
NobbZ
Using the documented functions of the standard library is not cheating. In a first go I just try to solve them. Speeding things up, making code idiomatic, all these cosmetic stuff is done afterwards, if at all. Massively depends on the time slot I can alot
I have not used
String.myers_difference/2though, because I was unsure if there are any guarantees about the order of:deland:inskeys. Also just filtering on the hamming distance beeing exactly1and then removing the opposing character bya |> zip(b) |> filter(fn {a, b} -> a == b end) |> map(fn {c, c} -> c end) |> to_stringfelt much more clean to me than matching on the diff-description in your version.To make this overall easier, I dealt with char lists in this exercise.
sasajuric
I wouldn’t say that there is such thing as cheating in AoC. For me, these puzzles are about the goals you set for yourself. Many people just like to solve them for fun, and reach for whichever improvisation can help them. For example, one friend solved a puzzle last year on a piece of paper, and a few others by using
grepfrom command lineWhen I did AoC last year, my main goal was to practice streams. I also tried to reach the solutions I’m happy with. In some cases, even after solving the challenge, I’d spend a few more sessions (sometimes even spread over a few days) to improve the solution.
So in my view, you set your own rules, and decide when you’re happy with your solution.
keathley
Wait…are you wondering if you’ve cheated because myers difference is a thing that exists in elixir or because you’re making an assumption that the wrong letter is only ever in the middle and not at the beginning or end? In the later case I’m not sure if this solution would work as a general solution for all inputs or not. It doesn’t really matter since you’re only using your input to work with I suppose.
NobbZ
Oh, this is a very valid point. I never have seen this issue before (as in: that this might become a problem).
Besides my points about ordering guarantees of inserts and deletes in the list, this is another point to consider against the general use of myers_diff here.
But still I do not consider this any cheating, as it solves the puzzle with the given input, which is the most important thing.
Last year, I followed the reddit actively, and some of the top-players said, they never touch again a solutions that gave them the correct answer until they really have to or get bored in the 11 months inbetween.
So it seems that there seems to be some kind of consensus, that whatever works, counts, well unless you simply copy paste
keathley
Yeah, a friend mentioned on twitter that there was a hack for this problem where you can make assumptions about the inputs and eliminate a bunch of looping and checking. I’m not making a judgement either way. Whatever solves the problem seems fine to me. Personally I wrote the O(n^2) solution similar to this since it was easy to understand and fast to write first. Once I had that I used the slow solution to validate a O(n) solution which seemed like a fun challenge.
balbin
I used
String.myers_difference/2along withKeyword.get_values, so it didn’t matter about the ordering, all the:delkeys’ values will be checked, I think this is a lot better than pattern matching since it works when the differing character is in the first position. Also joining the:eqparts after with a similar approach was really easy. Kinda interesting how I’ve usedKeyword.getso much but had never even heard ofKeyword.get_values.This was my solution if anyone’s interested.