Commit template
This commit is contained in:
parent
57dab49806
commit
f51e1cd8fb
3 changed files with 34 additions and 1 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1 +0,0 @@
|
||||||
template/
|
|
25
template/README
Normal file
25
template/README
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
Day REPLACE_ME Notes
|
||||||
|
|
||||||
|
+--------+
|
||||||
|
| Part 1 |
|
||||||
|
+--------+
|
||||||
|
|
||||||
|
$ elixir dayREPLACE_MEpart1.exs
|
||||||
|
|
||||||
|
Thoughts:
|
||||||
|
|
||||||
|
|
||||||
|
+--------+
|
||||||
|
| Part 2 |
|
||||||
|
+--------+
|
||||||
|
|
||||||
|
$ elixir dayREPLACE_MEpart2.exs
|
||||||
|
|
||||||
|
Thoughts:
|
||||||
|
|
||||||
|
|
||||||
|
+------------------+
|
||||||
|
| Overall Thoughts |
|
||||||
|
+------------------+
|
||||||
|
|
||||||
|
|
9
template/dayNpart1.exs
Normal file
9
template/dayNpart1.exs
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
defmodule DayREPLACE_MEPart1 do
|
||||||
|
def run do
|
||||||
|
File.read!("input")
|
||||||
|
|> String.trim()
|
||||||
|
|> String.split("\n")
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
DayREPLACE_MEPart1.run()
|
Loading…
Reference in a new issue