ConnorRigby

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?

Showing Posts 1 to 8

yawaramin

yawaramin

You mean did we take full advantage of the language syntax and semantics? Yup! :slight_smile: I did something similar to you, see my post for more details: Advent Of Code 2018 - #19

dbern

dbern

I was comparing with a JavaScript developer’s solution, and ya… Elixir is really nice :slight_smile: I don’t feel like I cheated, but I definitely felt like I had it easier.

NobbZ

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 :wink:

I have not used String.myers_difference/2 though, because I was unsure if there are any guarantees about the order of :del and :ins keys. Also just filtering on the hamming distance beeing exactly 1 and then removing the opposing character by a |> zip(b) |> filter(fn {a, b} -> a == b end) |> map(fn {c, c} -> c end) |> to_string felt 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

sasajuric

Author of Elixir In Action

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 grep from command line :slight_smile:

When 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

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

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 :wink:

keathley

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

balbin

I used String.myers_difference/2 along with Keyword.get_values, so it didn’t matter about the ordering, all the :del keys’ 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 :eq parts after with a similar approach was really easy. Kinda interesting how I’ve used Keyword.get so much but had never even heard of Keyword.get_values.

This was my solution if anyone’s interested.

— All posts loaded —

Where Next? Top

Trending in Discussions Top

AstonJ
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...
2977 94592 917
New
cblavier
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
mudasobwa
I am happy to introduce the very α version of the new programming language compiled to BEAM. Welcome Cure. It has literally three kille...
New
heathen
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
maennchen
:warning: Security advisory: Decimal DoS vulnerability A vulnerability has been published for decimal where very large exponents can cau...
New
marciol
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
durvia
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 Top

marciok
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
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Dmk
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
netoum
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
webofbits
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself. My main conc...
#ai
New
webofbits
Aludel - LLM Evaluation Workbench Aludel is an embeddable Phoenix LiveView dashboard for evaluating and comparing LLM prompts across mult...
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews