tangled
alpha
login
or
join now
aylac.top
/
advent_of_code
my solutions to advent of code
aoc
advent-of-code
0
fork
atom
overview
issues
pulls
pipelines
elixir template why not
aylac.top
2 months ago
a14f6504
4ce07275
verified
This commit was signed with the committer's
known signature
.
aylac.top
SSH Key Fingerprint:
SHA256:0I0RwJANCpgZd/yP0LOSXWEd0lfj1yyKsKISzeJAJ78=
options
unified
split
Changed files
+9
.gitignore
template
elixir
main.exs
+1
.gitignore
···
2
2
build
3
3
input.txt
4
4
input.json
5
5
+
_build
+8
template/elixir/main.exs
···
1
1
+
defmodule Main do
2
2
+
{_, input} =
3
3
+
File.read("../input.txt")
4
4
+
5
5
+
input = input |> String.trim()
6
6
+
7
7
+
IO.puts(input)
8
8
+
end