5
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

ElixirAdvent Calendar 2024

Day 19

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

Last updated at Posted at 2024-11-24

はじめに

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

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

問題文はこちら

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

Part 1 はこちら

セットアップ

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

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

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

入力の取得

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

スクリーンショット 2024-11-22 20.55.13.png

私の答え

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

回答

Part 1 の真逆、 Elixir コードを文字列として評価することになります

この操作は Macro.to_string で実行できます

puzzle_input
|> String.split("\n")
|> Enum.map(fn code ->
  string_length =
    code
    |> Macro.to_string()
    |> String.length()

  string_length - String.length(code)
end)
|> Enum.sum()

まとめ

メタプログラミングの考え方を知っていれば簡単でした

5
1
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
5
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?