this repo has no description

chore: add headers for the Day 8 tasks

Changed files
+8 -3
2021
+8 -3
2021/solutions.livemd
···
## Setup
```elixir
-
Mix.install([
-
{:nx, github: "elixir-nx/nx", sparse: "nx"}
-
])
```
```output
···
]>
```
```elixir
input
|> Enum.map(fn {_, output} ->
···
```output
390
```
```elixir
defmodule Day8.Task2 do
···
## Setup
```elixir
+
Mix.install([])
```
```output
···
]>
```
+
### Task 1
+
+
We simply need to count all occurences of the values that have 2, 3, 4, or 7 highlighted
+
segments.
+
```elixir
input
|> Enum.map(fn {_, output} ->
···
```output
390
```
+
+
### Task 2
```elixir
defmodule Day8.Task2 do