1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Advent of code 2015 Day 1 Part 2 を Livebook で楽しむ

Last updated at Posted at 2024-11-19

はじめに

Advent of code 2024 の準備として、過去回の Advent of code 2015 を Livebook で楽しみます

本記事では Day 1 の Part 2 を解きます

問題文はこちら

実装したノートブックはこちら

Part 1 はこちら

セットアップ

Kino AOC をインストールします

Mix.install([
  {:kino_aoc, "~> 0.1"}
])

Kino AOC の使い方はこちらを参照

入力の取得

"Advent of Code Helper" スマートセルを追加し、 Day 1 の入力を取得します

スクリーンショット 2024-11-19 12.25.27.png

私の答え

私の答えです。
折りたたんでおきます。
▶を押して開いてください。

回答

Enum.reduce_while() による上昇下降を順次実行していき、 0 より小さくなったときのインデックスを取得します

Enum.with_index で初期値 1 を指定することで、インデックス番号を 1 開始にすることができます

puzzle_input
|> String.codepoints()
|> Enum.with_index(1)
|> Enum.reduce_while(0, fn {direction, index}, current ->
  current =
    case direction do
      "(" -> current + 1
      _ -> current - 1
    end

  if current < 0 do
    {:halt, index}
  else
    {:cont, current}
  end
end)

まとめ

最初の方は素直に組めばいいだけなので楽ですね

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?