Day 2: Red-Nosed Reports

Megathread guidelines

  • Keep top level comments as only solutions, if you want to say something other than a solution put it in a new post. (replies to comments can be whatever)
  • You can send code in code blocks by using three backticks, the code, and then three backticks or use something such as https://blocks.programming.dev if you prefer sending it through a URL

FAQ

  • @aurele@sh.itjust.works
    link
    fedilink
    16 days ago

    Elixir

    defmodule AdventOfCode.Solution.Year2024.Day02 do
      use AdventOfCode.Solution.SharedParse
    
      @impl true
      def parse(input) do
        for line <- String.split(input, "\n", trim: true),
            do: String.split(line) |> Enum.map(&String.to_integer/1)
      end
    
      def part1(input) do
        Enum.count(input, &is_safe(&1, false))
      end
    
      def part2(input) do
        Enum.count(input, &(is_safe(&1, true) or is_safe(tl(&1), false)))
      end
    
      def is_safe([a, b, c | rest], can_fix) do
        cond do
          (b - a) * (c - b) > 0 and abs(b - a) in 1..3 and abs(c - b) in 1..3 ->
            is_safe([b, c | rest], can_fix)
    
          can_fix ->
            is_safe([a, c | rest], false) or is_safe([a, b | rest], false)
    
          true ->
            false
        end
      end
    
      def is_safe(_, _), do: true
    end