Commit template

This commit is contained in:
Adam Millerchip 2020-12-06 11:45:43 +09:00
parent 57dab49806
commit f51e1cd8fb
3 changed files with 34 additions and 1 deletions

1
.gitignore vendored
View File

@ -1 +0,0 @@
template/

25
template/README Normal file
View 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
View 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()