Skip to content

Commit

Permalink
2023 Day 1 Part 1
Browse files Browse the repository at this point in the history
  • Loading branch information
noahko96 committed Dec 20, 2023
1 parent 9a43ba0 commit 95ffa8c
Show file tree
Hide file tree
Showing 9 changed files with 1,141 additions and 0 deletions.
4 changes: 4 additions & 0 deletions noahover/aoc23/.formatter.exs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Used by "mix format"
[
inputs: ["{mix,.formatter}.exs", "{config,lib,test}/**/*.{ex,exs}"]
]
26 changes: 26 additions & 0 deletions noahover/aoc23/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# The directory Mix will write compiled artifacts to.
/_build/

# If you run "mix test --cover", coverage assets end up here.
/cover/

# The directory Mix downloads your dependencies sources to.
/deps/

# Where third-party dependencies like ExDoc output generated docs.
/doc/

# Ignore .fetch files in case you like to edit your project deps locally.
/.fetch

# If the VM crashes, it generates a dump, let's ignore it too.
erl_crash.dump

# Also ignore archive artifacts (built via "mix archive.build").
*.ez

# Ignore package tarball (built via "mix hex.build").
aoc23-*.tar

# Temporary files, for example, from tests.
/tmp/
21 changes: 21 additions & 0 deletions noahover/aoc23/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# AdventOfCode2023

**TODO: Add description**

## Installation

If [available in Hex](https://hex.pm/docs/publish), the package can be installed
by adding `aoc23` to your list of dependencies in `mix.exs`:

```elixir
def deps do
[
{:aoc23, "~> 0.1.0"}
]
end
```

Documentation can be generated with [ExDoc](https://github.com/elixir-lang/ex_doc)
and published on [HexDocs](https://hexdocs.pm). Once published, the docs can
be found at <https://hexdocs.pm/aoc23>.

Loading

0 comments on commit 95ffa8c

Please sign in to comment.