From ae2e69fb8e8288985b459ff2576d2c37aca4220b Mon Sep 17 00:00:00 2001 From: Adam Millerchip Date: Sat, 5 Dec 2020 22:33:50 +0900 Subject: [PATCH] Didn't use Bitwise in the end --- day5/day5part1.exs | 2 -- day5/day5part2.exs | 2 -- 2 files changed, 4 deletions(-) diff --git a/day5/day5part1.exs b/day5/day5part1.exs index 1a6cdeb..6e36cf2 100644 --- a/day5/day5part1.exs +++ b/day5/day5part1.exs @@ -1,6 +1,4 @@ defmodule Day5Part1 do - use Bitwise - def run do File.stream!("input") |> Stream.map(&seat_id/1) diff --git a/day5/day5part2.exs b/day5/day5part2.exs index fc28410..53cce2a 100644 --- a/day5/day5part2.exs +++ b/day5/day5part2.exs @@ -1,6 +1,4 @@ defmodule Day5Part2 do - use Bitwise - def run do File.stream!("input") |> Stream.map(&seat_id/1)