This topic is about Day 1 of the Advent of Code 2021.
We have a private leaderboard (shared with users of the elixir forum):
https://adventofcode.com/2021/leaderboard/private/view/370884
The entry code is:
370884-a6a71927
This topic is about Day 1 of the Advent of Code 2021.
We have a private leaderboard (shared with users of the elixir forum):
https://adventofcode.com/2021/leaderboard/private/view/370884
The entry code is:
370884-a6a71927
Here is my solution:
Spoiler alert! (Is it possible to mark replies as spoilers here?)
Omitting the file reading and type conversion, this is how I did it.
part1([A, B | T]) when B > A -> 1 + part1([B | T]);
part1([_, B | T]) -> part1([B | T]);
part1(_) -> 0.
part2([A, B, C, D | T]) when B+C+D > A+B+C -> 1 + part2([B, C, D | T]);
part2([_, B, C, D | T]) -> part2([B, C, D | T]);
part2(_) -> 0.
I think that no spoiler markers are necessary, because it should be understood that every reply in an AoC thread is a spoiler.
Cool! Let code challenge begin!
%% part1(Input, 0).
part1([H1, H2|T], Count) when H1 > H2 -> part1([H2|T], Count);
part1([_|T], Count) -> part1(T, Count + 1);
part1([], Count) -> Count - 1.
%% part2(Input, 0).
part2([H1, H2, H3, H4|T], Count) when H1 + H2 + H3 < H2 + H3 + H4 -> part2([H2, H3, H4|T], Count + 1);
part2([_|T], Count) -> part2(T, Count);
part2([], Count) -> Count.
My part 1 I used lists:foldl, having failed to do it with a list comprehension. By part 2, I realised that a recursive function was the way forward and my solution was almost identical to @vkatsuba.
My solution: pensandoemelixir/adventofcode/2021/day01_2021 at main · adolfont/pensandoemelixir · GitHub
Two videos where I try to explain my code: Advent of Code 2021 - YouTube
My solution is not typical from Erlang. It’s a translation from code I would write in Elixir.
I can see that most solutions use recursion
-module(aoc1).
-export([part1/0, part2/0]).
part1() ->
{_, Sum} = lists:foldl(fun(X, {Prev, Sum}) ->
if
X > Prev -> {X, Sum + 1};
true -> {X, Sum}
end
end, {nil, 0}, load_data()),
Sum.
part2() ->
{_, Sum} = lists:foldl(fun
(X, {{nil, B, C}, Sum}) ->
{{B, C, X}, Sum};
(X, {{A, B, C}, Sum}) ->
if
B + C + X > A + B + C -> {{B, C, X}, Sum + 1};
true -> {{B, C, X}, Sum}
end
end, {{nil, nil, nil}, 0}, load_data()),
Sum.
load_data() ->
{ok, Binary} = file:read_file("input.txt"),
StringContent = unicode:characters_to_list(Binary),
[element(1, string:to_integer(Substr)) || Substr <- string:tokens(StringContent, "\n")].
and this is the Elixir version.
defmodule Aoc1 do
def part1 do
{_, sum} = load_data()
|> Enum.reduce({nil, 0}, fn x, {prev, sum} ->
if prev && x > prev, do: {x, sum + 1}, else: {x, sum}
end)
sum
end
def part2 do
{_, sum} = load_data()
|> Enum.reduce({{nil, nil, nil}, 0}, fn
x, {{nil, b, c}, sum} ->
{{b, c, x}, sum}
x, {{a, b, c}, sum} ->
if b+c+x > a+b+c,
do: {{b, c, x}, sum + 1},
else: {{b, c, x}, sum}
end)
sum
end
defp load_data do
"input.txt"
|> File.read!()
|> String.split("\n", trim: true)
|> Enum.map(&String.to_integer(&1))
end
end
I am using AOC to try to be more fluent writing Erlang, which is the opposite direction of @bjorng
I see most of you save some time by not trying to find a good name for the functions. As I could not find good short names, I gave them names which are too long:
solve_day1_1(List) ->
do_solve_day1(List, lists:nthtail(1, List)).
solve_day1_2(List) ->
do_solve_day1(List, lists:nthtail(3, List)).
do_solve_day1([LH|LT], [RH|RT]) when LH < RH ->
1 + do_solve_day1(LT, RT);
do_solve_day1([_|LT], [_|RT]) ->
do_solve_day1(LT, RT);
do_solve_day1(_, []) ->
0.
The “window” is a red herring, number 1 and 2 are the same exercise with different shifts. Sadly, there is no nice way (that I know of) to make lists:zip
behave, otherwise this could probably be golfed down quite a bit
Yes, but you only discover that after you see Part 2. As I was doing a video, I didn’t want to change Part 1.
There is a small (and harmless) typo in your code, @bjorng.
Line 13: inifinity
Line 17: infinity.
After completing the 2017 edition and rage quitting the 2019 on video, this year I’m setting a low bar for things as I’ll try to complete as much of the advent of code as I can using only Awk, because why not.
#!/usr/bin/env bash
echo "part 1"
awk 'prev != "" && prev < $1 { incr+=1; } {prev = $1} END { print incr }' day1.input
echo "part 2"
awk \
'# initialization steps
a == "" { a=$0; next;}
b == "" {b=a; a=$0; next}
c == "" {c=b; b=a; a=$0; next}
# calculate sliding window
{prev=a+b+c; c=b; b=a; a=$0}
# count if the increment is larger
a+b+c > prev { incr+=1 }
# end result
END {print incr}' day1.input
Awk indeed … I like your approach! Having read a couple of Haskell books but never having written any actual code, I’m using AoC as an excuse to practice. It’s good to remember that it’s okay to suck at something.
Nice to see many erlang solutions this year
Unfortunately I’ve got absolutely no time to participate this year
Sounds sad. Because this is a great opportunity to practice with Erlang developers together. Some, pair programming of challenges . Do not miss the opportunity to practice with Erlang - this is a great way to learn something new and develop Erlang skills, I think that those challenges are useful not only for newcomers but also for experienced Erlang developers
. But of course, up to you
.
Yes, that’s why I did it last year already with Erlang I’d do it again this year, if I had time…
But the reason I simply have no time this year is not sad: my second daughter was born yesterday
So I wish you all a lot of fun, while I’ll be enjoying some sleepless nights haha
This is amazing news! Congratulations!
Congrats Rainer
Maybe you could combine the two
Congrats!