this repo has no description
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: add headers for the Day 8 tasks

+8 -3
+8 -3
2021/solutions.livemd
··· 10 10 ## Setup 11 11 12 12 ```elixir 13 - Mix.install([ 14 - {:nx, github: "elixir-nx/nx", sparse: "nx"} 15 - ]) 13 + Mix.install([]) 16 14 ``` 17 15 18 16 ```output ··· 617 615 ]> 618 616 ``` 619 617 618 + ### Task 1 619 + 620 + We simply need to count all occurences of the values that have 2, 3, 4, or 7 highlighted 621 + segments. 622 + 620 623 ```elixir 621 624 input 622 625 |> Enum.map(fn {_, output} -> ··· 628 631 ```output 629 632 390 630 633 ``` 634 + 635 + ### Task 2 631 636 632 637 ```elixir 633 638 defmodule Day8.Task2 do