Compare commits
7 Commits
minimal
...
61c3f1c79a
Author | SHA1 | Date | |
---|---|---|---|
|
61c3f1c79a | ||
|
cc5a0cec0d | ||
|
d2760ba051 | ||
|
148ea496c8 | ||
786a7eba8e | |||
9c48e5fa96 | |||
c8c1cdc950 |
@@ -6,8 +6,14 @@ steps:
|
|||||||
# Lint
|
# Lint
|
||||||
- "nix flake check"
|
- "nix flake check"
|
||||||
# Test
|
# Test
|
||||||
- nix develop --command dotnet test
|
- nix develop --command dotnet test AdventOfCode2023.FSharp
|
||||||
- nix develop --command dotnet test --configuration Release
|
- nix develop --command dotnet test AdventOfCode2023.FSharp --configuration Release
|
||||||
|
- nix develop --command alejandra --check .
|
||||||
|
- nix develop --command dotnet tool restore
|
||||||
|
- nix develop --command dotnet fantomas --check .
|
||||||
|
# TODO: if https://github.com/dotnet/sdk/issues/37295 ever gets fixed, remove the PublishAot=false
|
||||||
|
- "nix develop --command dotnet publish AdventOfCode2023.FSharp/AdventOfCode2023.FSharp/AdventOfCode2023.FSharp.fsproj --configuration Release -p:PublishAot=false"
|
||||||
|
- nix develop --command sh -c "$(find . -type f -name AdventOfCode2023.FSharp | grep Release | grep publish) AdventOfCode2023.FSharp/Test/samples"
|
||||||
|
|
||||||
when:
|
when:
|
||||||
- event: "push"
|
- event: "push"
|
||||||
|
@@ -11,6 +11,10 @@
|
|||||||
<Compile Include="Day1.fs" />
|
<Compile Include="Day1.fs" />
|
||||||
<Compile Include="Day2.fs" />
|
<Compile Include="Day2.fs" />
|
||||||
<Compile Include="Day3.fs" />
|
<Compile Include="Day3.fs" />
|
||||||
|
<Compile Include="Day4.fs" />
|
||||||
|
<Compile Include="Day5.fs" />
|
||||||
|
<Compile Include="Day6.fs" />
|
||||||
|
<Compile Include="Day7.fs" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
@@ -5,21 +5,13 @@ open System
|
|||||||
[<RequireQualifiedAccess>]
|
[<RequireQualifiedAccess>]
|
||||||
module Day1 =
|
module Day1 =
|
||||||
|
|
||||||
let firstDigit (s : ReadOnlySpan<char>) =
|
let inline firstDigit (s : ReadOnlySpan<char>) =
|
||||||
let mutable pos = 0
|
let pos = s.IndexOfAnyInRange ('0', '9')
|
||||||
|
|
||||||
while '0' > s.[pos] || s.[pos] > '9' do
|
|
||||||
pos <- pos + 1
|
|
||||||
|
|
||||||
byte s.[pos] - byte '0'
|
byte s.[pos] - byte '0'
|
||||||
|
|
||||||
// No surrogate pairs please!
|
// No surrogate pairs please!
|
||||||
let lastDigit (s : ReadOnlySpan<char>) =
|
let inline lastDigit (s : ReadOnlySpan<char>) =
|
||||||
let mutable pos = s.Length - 1
|
let pos = s.LastIndexOfAnyInRange ('0', '9')
|
||||||
|
|
||||||
while '0' > s.[pos] || s.[pos] > '9' do
|
|
||||||
pos <- pos - 1
|
|
||||||
|
|
||||||
byte s.[pos] - byte '0'
|
byte s.[pos] - byte '0'
|
||||||
|
|
||||||
let part1 (s : string) =
|
let part1 (s : string) =
|
||||||
@@ -35,34 +27,65 @@ module Day1 =
|
|||||||
|
|
||||||
total
|
total
|
||||||
|
|
||||||
let table =
|
let isDigitSpelled (s : ReadOnlySpan<char>) (pos : int) (answer : byref<byte>) =
|
||||||
[|
|
// Can't be bothered to write a jump-table compiler
|
||||||
"one", 1uy
|
if s.[pos] >= '0' && s.[pos] <= '9' then
|
||||||
"two", 2uy
|
answer <- byte s.[pos] - byte '0'
|
||||||
"three", 3uy
|
else if s.[pos] = 'o' then
|
||||||
"four", 4uy
|
if pos + 2 < s.Length && s.[pos + 1] = 'n' && s.[pos + 2] = 'e' then
|
||||||
"five", 5uy
|
answer <- 1uy
|
||||||
"six", 6uy
|
elif s.[pos] = 't' then
|
||||||
"seven", 7uy
|
if pos + 2 < s.Length && s.[pos + 1] = 'w' && s.[pos + 2] = 'o' then
|
||||||
"eight", 8uy
|
answer <- 2uy
|
||||||
"nine", 9uy
|
elif
|
||||||
|]
|
pos + 4 < s.Length
|
||||||
|
&& s.[pos + 1] = 'h'
|
||||||
|
&& s.[pos + 2] = 'r'
|
||||||
|
&& s.[pos + 3] = 'e'
|
||||||
|
&& s.[pos + 4] = 'e'
|
||||||
|
then
|
||||||
|
answer <- 3uy
|
||||||
|
elif s.[pos] = 'f' then
|
||||||
|
if pos + 3 < s.Length then
|
||||||
|
if s.[pos + 1] = 'o' && s.[pos + 2] = 'u' && s.[pos + 3] = 'r' then
|
||||||
|
answer <- 4uy
|
||||||
|
elif s.[pos + 1] = 'i' && s.[pos + 2] = 'v' && s.[pos + 3] = 'e' then
|
||||||
|
answer <- 5uy
|
||||||
|
elif s.[pos] = 's' then
|
||||||
|
if pos + 2 < s.Length && s.[pos + 1] = 'i' && s.[pos + 2] = 'x' then
|
||||||
|
answer <- 6uy
|
||||||
|
elif
|
||||||
|
pos + 4 < s.Length
|
||||||
|
&& s.[pos + 1] = 'e'
|
||||||
|
&& s.[pos + 2] = 'v'
|
||||||
|
&& s.[pos + 3] = 'e'
|
||||||
|
&& s.[pos + 4] = 'n'
|
||||||
|
then
|
||||||
|
answer <- 7uy
|
||||||
|
elif s.[pos] = 'e' then
|
||||||
|
if
|
||||||
|
pos + 4 < s.Length
|
||||||
|
&& s.[pos + 1] = 'i'
|
||||||
|
&& s.[pos + 2] = 'g'
|
||||||
|
&& s.[pos + 3] = 'h'
|
||||||
|
&& s.[pos + 4] = 't'
|
||||||
|
then
|
||||||
|
answer <- 8uy
|
||||||
|
elif s.[pos] = 'n' then
|
||||||
|
if
|
||||||
|
pos + 3 < s.Length
|
||||||
|
&& s.[pos + 1] = 'i'
|
||||||
|
&& s.[pos + 2] = 'n'
|
||||||
|
&& s.[pos + 3] = 'e'
|
||||||
|
then
|
||||||
|
answer <- 9uy
|
||||||
|
|
||||||
let firstDigitIncSpelled (s : ReadOnlySpan<char>) =
|
let firstDigitIncSpelled (s : ReadOnlySpan<char>) =
|
||||||
let mutable pos = 0
|
let mutable pos = 0
|
||||||
let mutable answer = 255uy
|
let mutable answer = 255uy
|
||||||
|
|
||||||
while answer = 255uy do
|
while answer = 255uy do
|
||||||
if s.[pos] >= '0' && s.[pos] <= '9' then
|
isDigitSpelled s pos &answer
|
||||||
answer <- byte s.[pos] - byte '0'
|
|
||||||
else
|
|
||||||
for i, value in table do
|
|
||||||
if
|
|
||||||
pos + i.Length < s.Length
|
|
||||||
&& MemoryExtensions.SequenceEqual (s.Slice (pos, i.Length), i)
|
|
||||||
then
|
|
||||||
answer <- value
|
|
||||||
|
|
||||||
pos <- pos + 1
|
pos <- pos + 1
|
||||||
|
|
||||||
answer
|
answer
|
||||||
@@ -72,16 +95,7 @@ module Day1 =
|
|||||||
let mutable answer = 255uy
|
let mutable answer = 255uy
|
||||||
|
|
||||||
while answer = 255uy do
|
while answer = 255uy do
|
||||||
if s.[pos] >= '0' && s.[pos] <= '9' then
|
isDigitSpelled s pos &answer
|
||||||
answer <- byte s.[pos] - byte '0'
|
|
||||||
else
|
|
||||||
for i, value in table do
|
|
||||||
if
|
|
||||||
pos - i.Length + 1 >= 0
|
|
||||||
&& MemoryExtensions.SequenceEqual (s.Slice (pos - i.Length + 1, i.Length), i)
|
|
||||||
then
|
|
||||||
answer <- value
|
|
||||||
|
|
||||||
pos <- pos - 1
|
pos <- pos - 1
|
||||||
|
|
||||||
answer
|
answer
|
||||||
|
@@ -146,7 +146,7 @@ module Day3 =
|
|||||||
|
|
||||||
let mutable answer = 0
|
let mutable answer = 0
|
||||||
|
|
||||||
for KeyValue (_gearPos, gears) in gears do
|
for gears in gears.Values do
|
||||||
if gears.Count = 2 then
|
if gears.Count = 2 then
|
||||||
answer <- answer + gears.[0] * gears.[1]
|
answer <- answer + gears.[0] * gears.[1]
|
||||||
|
|
||||||
|
101
AdventOfCode2023.FSharp/AdventOfCode2023.FSharp.Lib/Day4.fs
Normal file
101
AdventOfCode2023.FSharp/AdventOfCode2023.FSharp.Lib/Day4.fs
Normal file
@@ -0,0 +1,101 @@
|
|||||||
|
namespace AdventOfCode2023
|
||||||
|
|
||||||
|
open System
|
||||||
|
open System.Globalization
|
||||||
|
|
||||||
|
[<RequireQualifiedAccess>]
|
||||||
|
module Day4 =
|
||||||
|
|
||||||
|
let inline parseByte (chars : ReadOnlySpan<char>) : byte =
|
||||||
|
Byte.Parse (chars, NumberStyles.None, NumberFormatInfo.InvariantInfo)
|
||||||
|
//let mutable answer = 0uy
|
||||||
|
//for c in chars do
|
||||||
|
// answer <- answer * 10uy + (byte c - 48uy)
|
||||||
|
//answer
|
||||||
|
|
||||||
|
let part1 (s : string) =
|
||||||
|
use lines = StringSplitEnumerator.make '\n' s
|
||||||
|
let mutable total = 0
|
||||||
|
let winningNumbers = ResizeArray<byte> ()
|
||||||
|
|
||||||
|
for line in lines do
|
||||||
|
if not (line.IsWhiteSpace ()) then
|
||||||
|
let mutable accumulatingWinning = true
|
||||||
|
winningNumbers.Clear ()
|
||||||
|
use mutable split = StringSplitEnumerator.make' ' ' line
|
||||||
|
StringSplitEnumerator.chomp "Card" &split
|
||||||
|
|
||||||
|
while split.Current.IsEmpty || split.Current.[split.Current.Length - 1] <> ':' do
|
||||||
|
split.MoveNext () |> ignore
|
||||||
|
|
||||||
|
split.MoveNext () |> ignore
|
||||||
|
|
||||||
|
while accumulatingWinning do
|
||||||
|
while split.Current.IsEmpty do
|
||||||
|
split.MoveNext () |> ignore
|
||||||
|
|
||||||
|
if split.Current.[0] = '|' then
|
||||||
|
accumulatingWinning <- false
|
||||||
|
else
|
||||||
|
winningNumbers.Add (parseByte split.Current)
|
||||||
|
split.MoveNext () |> ignore
|
||||||
|
|
||||||
|
let mutable answer = 0
|
||||||
|
|
||||||
|
while split.MoveNext () do
|
||||||
|
if not split.Current.IsEmpty then
|
||||||
|
let n = parseByte split.Current
|
||||||
|
|
||||||
|
if winningNumbers.Contains n then
|
||||||
|
answer <- answer + 1
|
||||||
|
|
||||||
|
if answer > 0 then
|
||||||
|
total <- total + (1 <<< (answer - 1))
|
||||||
|
|
||||||
|
total
|
||||||
|
|
||||||
|
let part2 (s : string) =
|
||||||
|
use lines = StringSplitEnumerator.make '\n' s
|
||||||
|
let winningNumbers = ResizeArray<byte> ()
|
||||||
|
let winners = ResizeArray<int> ()
|
||||||
|
|
||||||
|
for line in lines do
|
||||||
|
if not (line.IsWhiteSpace ()) then
|
||||||
|
let mutable accumulatingWinning = true
|
||||||
|
winningNumbers.Clear ()
|
||||||
|
use mutable split = StringSplitEnumerator.make' ' ' line
|
||||||
|
StringSplitEnumerator.chomp "Card" &split
|
||||||
|
|
||||||
|
while split.Current.IsEmpty || split.Current.[split.Current.Length - 1] <> ':' do
|
||||||
|
split.MoveNext () |> ignore
|
||||||
|
|
||||||
|
split.MoveNext () |> ignore
|
||||||
|
|
||||||
|
while accumulatingWinning do
|
||||||
|
while split.Current.IsEmpty do
|
||||||
|
split.MoveNext () |> ignore
|
||||||
|
|
||||||
|
if split.Current.[0] = '|' then
|
||||||
|
accumulatingWinning <- false
|
||||||
|
else
|
||||||
|
winningNumbers.Add (parseByte split.Current)
|
||||||
|
split.MoveNext () |> ignore
|
||||||
|
|
||||||
|
let mutable answer = 0
|
||||||
|
|
||||||
|
while split.MoveNext () do
|
||||||
|
if not split.Current.IsEmpty then
|
||||||
|
let n = parseByte split.Current
|
||||||
|
|
||||||
|
if winningNumbers.Contains n then
|
||||||
|
answer <- answer + 1
|
||||||
|
|
||||||
|
winners.Add answer
|
||||||
|
|
||||||
|
let ans = Array.create winners.Count 1
|
||||||
|
|
||||||
|
for i = 0 to winners.Count - 1 do
|
||||||
|
for j = i + 1 to winners.[i] + i do
|
||||||
|
ans.[j] <- ans.[j] + ans.[i]
|
||||||
|
|
||||||
|
ans |> Array.sum
|
191
AdventOfCode2023.FSharp/AdventOfCode2023.FSharp.Lib/Day5.fs
Normal file
191
AdventOfCode2023.FSharp/AdventOfCode2023.FSharp.Lib/Day5.fs
Normal file
@@ -0,0 +1,191 @@
|
|||||||
|
namespace AdventOfCode2023
|
||||||
|
|
||||||
|
open System
|
||||||
|
|
||||||
|
[<Struct>]
|
||||||
|
type Range =
|
||||||
|
{
|
||||||
|
SourceStart : uint32
|
||||||
|
DestStart : uint32
|
||||||
|
Len : uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
[<RequireQualifiedAccess>]
|
||||||
|
module Day5 =
|
||||||
|
|
||||||
|
let parse (s : string) =
|
||||||
|
use mutable lines = StringSplitEnumerator.make '\n' s
|
||||||
|
lines.MoveNext () |> ignore
|
||||||
|
|
||||||
|
let seeds =
|
||||||
|
use mutable line1 = StringSplitEnumerator.make' ' ' lines.Current
|
||||||
|
StringSplitEnumerator.chomp "seeds:" &line1
|
||||||
|
let result = ResizeArray ()
|
||||||
|
|
||||||
|
while line1.MoveNext () do
|
||||||
|
result.Add (UInt32.Parse line1.Current)
|
||||||
|
|
||||||
|
result.ToArray ()
|
||||||
|
|
||||||
|
lines.MoveNext () |> ignore
|
||||||
|
|
||||||
|
let mappings = ResizeArray ()
|
||||||
|
|
||||||
|
let mutable currentMapping = null
|
||||||
|
|
||||||
|
for line in lines do
|
||||||
|
if line.IsEmpty then
|
||||||
|
if not (isNull currentMapping) then
|
||||||
|
mappings.Add currentMapping
|
||||||
|
currentMapping <- null
|
||||||
|
else if isNull currentMapping then
|
||||||
|
currentMapping <- ResizeArray ()
|
||||||
|
else
|
||||||
|
use mutable line = StringSplitEnumerator.make' ' ' line
|
||||||
|
let destStart = StringSplitEnumerator.consumeU32 &line
|
||||||
|
let sourceStart = StringSplitEnumerator.consumeU32 &line
|
||||||
|
let rangeLen = StringSplitEnumerator.consumeU32 &line
|
||||||
|
|
||||||
|
{
|
||||||
|
SourceStart = sourceStart
|
||||||
|
DestStart = destStart
|
||||||
|
Len = rangeLen
|
||||||
|
}
|
||||||
|
|> currentMapping.Add
|
||||||
|
|
||||||
|
seeds, mappings
|
||||||
|
|
||||||
|
let part1 (s : string) =
|
||||||
|
let seeds, mappings = parse s
|
||||||
|
|
||||||
|
let mutable best = UInt32.MaxValue
|
||||||
|
|
||||||
|
for seed in seeds do
|
||||||
|
let mutable remapped = seed
|
||||||
|
|
||||||
|
for map in mappings do
|
||||||
|
let mutable hasRemappedThisLayer = false
|
||||||
|
|
||||||
|
for interval in map do
|
||||||
|
if not hasRemappedThisLayer then
|
||||||
|
if
|
||||||
|
interval.SourceStart <= remapped
|
||||||
|
&& remapped - interval.SourceStart < interval.Len
|
||||||
|
then
|
||||||
|
hasRemappedThisLayer <- true
|
||||||
|
remapped <- remapped + (interval.DestStart - interval.SourceStart)
|
||||||
|
|
||||||
|
if remapped < best then
|
||||||
|
best <- remapped
|
||||||
|
|
||||||
|
best
|
||||||
|
|
||||||
|
// The input ranges are inclusive at both ends.
|
||||||
|
// Returns any range we didn't map.
|
||||||
|
let private split
|
||||||
|
(resultStarts : ResizeArray<uint32>)
|
||||||
|
(resultEnds : ResizeArray<uint32>)
|
||||||
|
start
|
||||||
|
finish
|
||||||
|
(rangeFromLayer : Range)
|
||||||
|
: (uint32 * uint32 * (uint32 * uint32) voption) voption
|
||||||
|
=
|
||||||
|
let low = rangeFromLayer.SourceStart
|
||||||
|
let high = rangeFromLayer.SourceStart + rangeFromLayer.Len - 1ul
|
||||||
|
|
||||||
|
if low <= start then
|
||||||
|
if finish <= high then
|
||||||
|
// low ... start .. finish .. high
|
||||||
|
// so the entire input range gets mapped down
|
||||||
|
resultStarts.Add (start + rangeFromLayer.DestStart - rangeFromLayer.SourceStart)
|
||||||
|
resultEnds.Add (finish + rangeFromLayer.DestStart - rangeFromLayer.SourceStart)
|
||||||
|
|
||||||
|
ValueNone
|
||||||
|
elif start <= high then
|
||||||
|
// low .. start .. high .. finish
|
||||||
|
// so start .. high gets mapped down
|
||||||
|
// and high + 1 .. finish stays where it is.
|
||||||
|
// high < finish is already guaranteed by previous if block.
|
||||||
|
resultStarts.Add (start + rangeFromLayer.DestStart - rangeFromLayer.SourceStart)
|
||||||
|
resultEnds.Add (high + rangeFromLayer.DestStart - rangeFromLayer.SourceStart)
|
||||||
|
|
||||||
|
ValueSome (high + 1ul, finish, ValueNone)
|
||||||
|
else
|
||||||
|
ValueSome (start, finish, ValueNone)
|
||||||
|
else if high <= finish then
|
||||||
|
// start .. low .. high .. finish
|
||||||
|
// so start .. low - 1 stays where it is
|
||||||
|
// low .. high gets mapped down
|
||||||
|
// and high + 1 .. finish stays where it is
|
||||||
|
resultStarts.Add (low + rangeFromLayer.DestStart - rangeFromLayer.SourceStart)
|
||||||
|
resultEnds.Add (high + rangeFromLayer.DestStart - rangeFromLayer.SourceStart)
|
||||||
|
|
||||||
|
ValueSome (start, low - 1ul, ValueSome (high + 1ul, finish))
|
||||||
|
elif low < finish then
|
||||||
|
// start .. low .. finish .. high
|
||||||
|
// so start .. low - 1 stays where it is
|
||||||
|
// and low .. finish gets mapped down
|
||||||
|
resultStarts.Add (low + rangeFromLayer.DestStart - rangeFromLayer.SourceStart)
|
||||||
|
resultEnds.Add (finish + rangeFromLayer.DestStart - rangeFromLayer.SourceStart)
|
||||||
|
|
||||||
|
ValueSome (start, low - 1ul, ValueNone)
|
||||||
|
else
|
||||||
|
ValueSome (start, finish, ValueNone)
|
||||||
|
|
||||||
|
let part2 (s : string) : uint32 =
|
||||||
|
let seeds, mappings = parse s
|
||||||
|
|
||||||
|
let mutable intervalStarts = ResizeArray ()
|
||||||
|
let mutable intervalEnds = ResizeArray ()
|
||||||
|
|
||||||
|
for i = 0 to (seeds.Length - 1) / 2 do
|
||||||
|
intervalStarts.Add seeds.[2 * i]
|
||||||
|
intervalEnds.Add (seeds.[2 * i + 1] + seeds.[2 * i] - 1ul)
|
||||||
|
|
||||||
|
let mutable nextIntervalStarts = ResizeArray ()
|
||||||
|
let mutable nextIntervalEnds = ResizeArray ()
|
||||||
|
|
||||||
|
for mapLayer in mappings do
|
||||||
|
let mutable i = 0
|
||||||
|
|
||||||
|
while i < intervalStarts.Count do
|
||||||
|
// split interval according to every map
|
||||||
|
let mutable allMoved = false
|
||||||
|
let mutable currentRange = 0
|
||||||
|
|
||||||
|
while not allMoved && currentRange < mapLayer.Count do
|
||||||
|
let range = mapLayer.[currentRange]
|
||||||
|
// range is e.g. 50 98 2, i.e. "98-99 goes to 50-51"
|
||||||
|
match split nextIntervalStarts nextIntervalEnds intervalStarts.[i] intervalEnds.[i] range with
|
||||||
|
| ValueNone -> allMoved <- true
|
||||||
|
| ValueSome (start, finish, v) ->
|
||||||
|
intervalStarts.[i] <- start
|
||||||
|
intervalEnds.[i] <- finish
|
||||||
|
|
||||||
|
match v with
|
||||||
|
| ValueNone -> ()
|
||||||
|
| ValueSome (start, finish) ->
|
||||||
|
intervalStarts.Add start
|
||||||
|
intervalEnds.Add finish
|
||||||
|
|
||||||
|
currentRange <- currentRange + 1
|
||||||
|
|
||||||
|
if not allMoved then
|
||||||
|
nextIntervalStarts.Add intervalStarts.[i]
|
||||||
|
nextIntervalEnds.Add intervalEnds.[i]
|
||||||
|
|
||||||
|
i <- i + 1
|
||||||
|
|
||||||
|
let oldIntervals = intervalStarts
|
||||||
|
oldIntervals.Clear ()
|
||||||
|
intervalStarts <- nextIntervalStarts
|
||||||
|
nextIntervalStarts <- oldIntervals
|
||||||
|
|
||||||
|
let oldIntervals = intervalEnds
|
||||||
|
oldIntervals.Clear ()
|
||||||
|
intervalEnds <- nextIntervalEnds
|
||||||
|
nextIntervalEnds <- oldIntervals
|
||||||
|
|
||||||
|
|
||||||
|
// SIMD go brrr
|
||||||
|
System.Linq.Enumerable.Min intervalStarts
|
86
AdventOfCode2023.FSharp/AdventOfCode2023.FSharp.Lib/Day6.fs
Normal file
86
AdventOfCode2023.FSharp/AdventOfCode2023.FSharp.Lib/Day6.fs
Normal file
@@ -0,0 +1,86 @@
|
|||||||
|
namespace AdventOfCode2023
|
||||||
|
|
||||||
|
open System
|
||||||
|
|
||||||
|
[<RequireQualifiedAccess>]
|
||||||
|
module Day6 =
|
||||||
|
|
||||||
|
let parse (s : string) =
|
||||||
|
use mutable lines = StringSplitEnumerator.make '\n' s
|
||||||
|
|
||||||
|
let times =
|
||||||
|
lines.MoveNext () |> ignore
|
||||||
|
use mutable line = StringSplitEnumerator.make' ' ' lines.Current
|
||||||
|
StringSplitEnumerator.chomp "Time:" &line
|
||||||
|
line.MoveNext () |> ignore
|
||||||
|
let times = ResizeArray ()
|
||||||
|
|
||||||
|
while line.MoveNext () do
|
||||||
|
if not line.Current.IsEmpty then
|
||||||
|
times.Add (UInt64.Parse line.Current)
|
||||||
|
|
||||||
|
times
|
||||||
|
|
||||||
|
let distance =
|
||||||
|
lines.MoveNext () |> ignore
|
||||||
|
use mutable line = StringSplitEnumerator.make' ' ' lines.Current
|
||||||
|
StringSplitEnumerator.chomp "Distance:" &line
|
||||||
|
line.MoveNext () |> ignore
|
||||||
|
let distance = ResizeArray ()
|
||||||
|
|
||||||
|
while line.MoveNext () do
|
||||||
|
if not line.Current.IsEmpty then
|
||||||
|
distance.Add (UInt64.Parse line.Current)
|
||||||
|
|
||||||
|
distance
|
||||||
|
|
||||||
|
times, distance
|
||||||
|
|
||||||
|
let furthest (distance : uint64) (toBeat : uint64) =
|
||||||
|
// Count i in [1 .. distance - 1] such that (distance - i) * i > toBeat
|
||||||
|
// i.e. such that distance * i - i * i > toBeat
|
||||||
|
// -i^2 + distance * i - toBeat = 0 when:
|
||||||
|
// i = (distance +- sqrt(distance^2 - 4 * toBeat)) / 2
|
||||||
|
let distFloat = float distance
|
||||||
|
let inside = sqrt (distFloat * distFloat - 4.0 * float toBeat)
|
||||||
|
let limit1 = (distFloat + inside) / 2.0
|
||||||
|
let limit2 = (distFloat - sqrt (distFloat * distFloat - 4.0 * float toBeat)) / 2.0
|
||||||
|
// round limit2 up and limit1 down
|
||||||
|
let limit1 = uint64 (floor limit1)
|
||||||
|
let limit2 = uint64 (ceil limit2)
|
||||||
|
// cope with edge case of an exact square
|
||||||
|
if (uint64 inside) * (uint64 inside) = uint64 distance * uint64 distance - 4uL * uint64 toBeat then
|
||||||
|
limit1 - limit2 - 1uL
|
||||||
|
else
|
||||||
|
limit1 - limit2 + 1uL
|
||||||
|
|
||||||
|
let part1 (s : string) =
|
||||||
|
let times, distance = parse s
|
||||||
|
let mutable answer = 1uL
|
||||||
|
|
||||||
|
for i = 0 to times.Count - 1 do
|
||||||
|
let time = times.[i]
|
||||||
|
let distance = distance.[i]
|
||||||
|
let winners = furthest time distance
|
||||||
|
answer <- answer * winners
|
||||||
|
|
||||||
|
answer
|
||||||
|
|
||||||
|
let concat (digits : ResizeArray<uint64>) : uint64 =
|
||||||
|
let mutable answer = 0uL
|
||||||
|
|
||||||
|
for digit in digits do
|
||||||
|
let mutable power = 10uL
|
||||||
|
|
||||||
|
while digit >= power do
|
||||||
|
power <- power * 10uL
|
||||||
|
|
||||||
|
answer <- answer * power + digit
|
||||||
|
|
||||||
|
answer
|
||||||
|
|
||||||
|
let part2 (s : string) =
|
||||||
|
let times, distance = parse s
|
||||||
|
let concatTime = concat times
|
||||||
|
let concatDist = concat distance
|
||||||
|
furthest concatTime concatDist
|
204
AdventOfCode2023.FSharp/AdventOfCode2023.FSharp.Lib/Day7.fs
Normal file
204
AdventOfCode2023.FSharp/AdventOfCode2023.FSharp.Lib/Day7.fs
Normal file
@@ -0,0 +1,204 @@
|
|||||||
|
namespace AdventOfCode2023
|
||||||
|
|
||||||
|
open System
|
||||||
|
open System.Collections.Generic
|
||||||
|
|
||||||
|
type Hand =
|
||||||
|
| Five = 10
|
||||||
|
| Four = 9
|
||||||
|
| FullHouse = 8
|
||||||
|
| Three = 7
|
||||||
|
| TwoPairs = 6
|
||||||
|
| Pair = 5
|
||||||
|
| High = 4
|
||||||
|
|
||||||
|
type HandContents =
|
||||||
|
{
|
||||||
|
First : byte
|
||||||
|
Second : byte
|
||||||
|
Third : byte
|
||||||
|
Fourth : byte
|
||||||
|
Fifth : byte
|
||||||
|
}
|
||||||
|
|
||||||
|
[<RequireQualifiedAccess>]
|
||||||
|
module Day7 =
|
||||||
|
|
||||||
|
let inline toByte (adjustJoker : bool) (c : char) : byte =
|
||||||
|
if c <= '9' then byte c - byte '0'
|
||||||
|
elif c = 'T' then 10uy
|
||||||
|
elif c = 'J' then (if adjustJoker then 1uy else 11uy)
|
||||||
|
elif c = 'Q' then 12uy
|
||||||
|
elif c = 'K' then 13uy
|
||||||
|
elif c = 'A' then 14uy
|
||||||
|
else failwithf "could not parse: %c" c
|
||||||
|
|
||||||
|
let inline private updateState (tallies : ResizeArray<_>) newNum =
|
||||||
|
let mutable isAdded = false
|
||||||
|
|
||||||
|
for i = 0 to tallies.Count - 1 do
|
||||||
|
if fst tallies.[i] = newNum then
|
||||||
|
tallies.[i] <- (fst tallies.[i], snd tallies.[i] + 1)
|
||||||
|
isAdded <- true
|
||||||
|
|
||||||
|
if not isAdded then
|
||||||
|
tallies.Add (newNum, 1)
|
||||||
|
|
||||||
|
let inline parseHand
|
||||||
|
(tallyBuffer : ResizeArray<_>)
|
||||||
|
(adjustJoker : bool)
|
||||||
|
(s : ReadOnlySpan<char>)
|
||||||
|
: Hand * HandContents
|
||||||
|
=
|
||||||
|
let contents =
|
||||||
|
{
|
||||||
|
First = toByte adjustJoker s.[0]
|
||||||
|
Second = toByte adjustJoker s.[1]
|
||||||
|
Third = toByte adjustJoker s.[2]
|
||||||
|
Fourth = toByte adjustJoker s.[3]
|
||||||
|
Fifth = toByte adjustJoker s.[4]
|
||||||
|
}
|
||||||
|
|
||||||
|
tallyBuffer.Clear ()
|
||||||
|
tallyBuffer.Add (contents.First, 1)
|
||||||
|
updateState tallyBuffer contents.Second
|
||||||
|
updateState tallyBuffer contents.Third
|
||||||
|
updateState tallyBuffer contents.Fourth
|
||||||
|
updateState tallyBuffer contents.Fifth
|
||||||
|
|
||||||
|
let jokerCount, jokerPos =
|
||||||
|
if not adjustJoker then
|
||||||
|
0, -1
|
||||||
|
else
|
||||||
|
let mutable count = 0
|
||||||
|
let mutable jokerPos = -1
|
||||||
|
|
||||||
|
for i = 0 to tallyBuffer.Count - 1 do
|
||||||
|
let card, tally = tallyBuffer.[i]
|
||||||
|
|
||||||
|
if card = 1uy then
|
||||||
|
count <- tally
|
||||||
|
jokerPos <- i
|
||||||
|
|
||||||
|
count, jokerPos
|
||||||
|
|
||||||
|
let hand =
|
||||||
|
if jokerCount > 0 then
|
||||||
|
match tallyBuffer.Count with
|
||||||
|
| 1 ->
|
||||||
|
// Five jokers
|
||||||
|
Hand.Five
|
||||||
|
| 2 ->
|
||||||
|
// Jokers plus one other card type
|
||||||
|
Hand.Five
|
||||||
|
| 3 ->
|
||||||
|
// Jokers plus two other card types. Either full house, or four of a kind
|
||||||
|
if jokerCount >= 2 then
|
||||||
|
// JJABB or JJJAB
|
||||||
|
Hand.Four
|
||||||
|
else if
|
||||||
|
// JAABB or JAAAB
|
||||||
|
jokerPos <> 0
|
||||||
|
then
|
||||||
|
if snd tallyBuffer.[0] = 2 then
|
||||||
|
Hand.FullHouse
|
||||||
|
else
|
||||||
|
Hand.Four
|
||||||
|
else if snd tallyBuffer.[1] = 2 then
|
||||||
|
Hand.FullHouse
|
||||||
|
else
|
||||||
|
Hand.Four
|
||||||
|
| 4 ->
|
||||||
|
// Jokers plus three other card types, exactly one of which therefore is a two-of.
|
||||||
|
Hand.Three
|
||||||
|
| 5 ->
|
||||||
|
// Five different cards, one of which is a joker.
|
||||||
|
Hand.Pair
|
||||||
|
| _ -> failwith "bad tallyBuffer"
|
||||||
|
elif tallyBuffer.Count = 1 then
|
||||||
|
Hand.Five
|
||||||
|
elif tallyBuffer.Count = 2 then
|
||||||
|
// AAAAB or AAABB
|
||||||
|
if snd tallyBuffer.[0] = 3 || snd tallyBuffer.[0] = 2 then
|
||||||
|
Hand.FullHouse
|
||||||
|
else
|
||||||
|
Hand.Four
|
||||||
|
elif tallyBuffer.Count = 3 then
|
||||||
|
// AAABC or AABBC
|
||||||
|
if snd tallyBuffer.[0] = 3 then Hand.Three
|
||||||
|
elif snd tallyBuffer.[0] = 2 then Hand.TwoPairs
|
||||||
|
elif snd tallyBuffer.[1] = 3 then Hand.Three
|
||||||
|
elif snd tallyBuffer.[1] = 2 then Hand.TwoPairs
|
||||||
|
else Hand.Three
|
||||||
|
elif tallyBuffer.Count = 4 then
|
||||||
|
Hand.Pair
|
||||||
|
else
|
||||||
|
Hand.High
|
||||||
|
|
||||||
|
hand, contents
|
||||||
|
|
||||||
|
let parse (adjustJoker : bool) (s : string) : ResizeArray<Hand * HandContents * int> =
|
||||||
|
use mutable lines = StringSplitEnumerator.make '\n' s
|
||||||
|
let result = ResizeArray ()
|
||||||
|
let tallies = ResizeArray 5
|
||||||
|
|
||||||
|
while lines.MoveNext () do
|
||||||
|
if not lines.Current.IsEmpty then
|
||||||
|
use mutable line = StringSplitEnumerator.make' ' ' lines.Current
|
||||||
|
line.MoveNext () |> ignore
|
||||||
|
let hand, contents = parseHand tallies adjustJoker line.Current
|
||||||
|
line.MoveNext () |> ignore
|
||||||
|
let bid = Int32.Parse line.Current
|
||||||
|
|
||||||
|
result.Add (hand, contents, bid)
|
||||||
|
|
||||||
|
result
|
||||||
|
|
||||||
|
let compArrBasic (a : HandContents) (b : HandContents) =
|
||||||
|
if a.First > b.First then 1
|
||||||
|
elif a.First < b.First then -1
|
||||||
|
elif a.Second > b.Second then 1
|
||||||
|
elif a.Second < b.Second then -1
|
||||||
|
elif a.Third > b.Third then 1
|
||||||
|
elif a.Third < b.Third then -1
|
||||||
|
elif a.Fourth > b.Fourth then 1
|
||||||
|
elif a.Fourth < b.Fourth then -1
|
||||||
|
elif a.Fifth > b.Fifth then 1
|
||||||
|
elif a.Fifth < b.Fifth then -1
|
||||||
|
else 0
|
||||||
|
|
||||||
|
let compBasic : IComparer<Hand * HandContents * int> =
|
||||||
|
{ new IComparer<_> with
|
||||||
|
member _.Compare ((aHand, aContents, _), (bHand, bContents, _)) =
|
||||||
|
match compare aHand bHand with
|
||||||
|
| 0 -> compArrBasic aContents bContents
|
||||||
|
| x -> x
|
||||||
|
}
|
||||||
|
|
||||||
|
let part1 (s : string) : int =
|
||||||
|
let parsed = parse false s
|
||||||
|
|
||||||
|
parsed.Sort compBasic
|
||||||
|
|
||||||
|
let mutable answer = 0
|
||||||
|
let mutable pos = 1
|
||||||
|
|
||||||
|
for _, _, bid in parsed do
|
||||||
|
answer <- answer + bid * pos
|
||||||
|
pos <- pos + 1
|
||||||
|
|
||||||
|
answer
|
||||||
|
|
||||||
|
let part2 (s : string) =
|
||||||
|
let parsed = parse true s
|
||||||
|
|
||||||
|
parsed.Sort compBasic
|
||||||
|
|
||||||
|
let mutable answer = 0
|
||||||
|
let mutable pos = 1
|
||||||
|
|
||||||
|
for _, _, bid in parsed do
|
||||||
|
answer <- answer + bid * pos
|
||||||
|
pos <- pos + 1
|
||||||
|
|
||||||
|
answer
|
@@ -95,3 +95,15 @@ module StringSplitEnumerator =
|
|||||||
failwith "expected an int, got nothing"
|
failwith "expected an int, got nothing"
|
||||||
|
|
||||||
Int32.Parse e.Current
|
Int32.Parse e.Current
|
||||||
|
|
||||||
|
let consumeU32 (e : byref<StringSplitEnumerator>) : uint32 =
|
||||||
|
if not (e.MoveNext ()) then
|
||||||
|
failwith "expected an int, got nothing"
|
||||||
|
|
||||||
|
UInt32.Parse e.Current
|
||||||
|
|
||||||
|
let consumeU64 (e : byref<StringSplitEnumerator>) : uint64 =
|
||||||
|
if not (e.MoveNext ()) then
|
||||||
|
failwith "expected an int, got nothing"
|
||||||
|
|
||||||
|
UInt64.Parse e.Current
|
||||||
|
@@ -23,6 +23,8 @@ module Program =
|
|||||||
|
|
||||||
let sw = Stopwatch.StartNew ()
|
let sw = Stopwatch.StartNew ()
|
||||||
|
|
||||||
|
printfn "=====Day 1====="
|
||||||
|
|
||||||
do
|
do
|
||||||
sw.Restart ()
|
sw.Restart ()
|
||||||
let input = Path.Combine (dir.FullName, "day1.txt") |> File.ReadAllText
|
let input = Path.Combine (dir.FullName, "day1.txt") |> File.ReadAllText
|
||||||
@@ -36,6 +38,8 @@ module Program =
|
|||||||
Console.WriteLine (part2.ToString ())
|
Console.WriteLine (part2.ToString ())
|
||||||
Console.Error.WriteLine ((1_000.0 * float sw.ElapsedTicks / float Stopwatch.Frequency).ToString () + "ms")
|
Console.Error.WriteLine ((1_000.0 * float sw.ElapsedTicks / float Stopwatch.Frequency).ToString () + "ms")
|
||||||
|
|
||||||
|
printfn "=====Day 2====="
|
||||||
|
|
||||||
do
|
do
|
||||||
let input = Path.Combine (dir.FullName, "day2.txt") |> File.ReadAllText
|
let input = Path.Combine (dir.FullName, "day2.txt") |> File.ReadAllText
|
||||||
sw.Restart ()
|
sw.Restart ()
|
||||||
@@ -49,6 +53,8 @@ module Program =
|
|||||||
Console.WriteLine (part2.ToString ())
|
Console.WriteLine (part2.ToString ())
|
||||||
Console.Error.WriteLine ((1_000.0 * float sw.ElapsedTicks / float Stopwatch.Frequency).ToString () + "ms")
|
Console.Error.WriteLine ((1_000.0 * float sw.ElapsedTicks / float Stopwatch.Frequency).ToString () + "ms")
|
||||||
|
|
||||||
|
printfn "=====Day 3====="
|
||||||
|
|
||||||
do
|
do
|
||||||
let input = Path.Combine (dir.FullName, "day3.txt") |> File.ReadAllBytes
|
let input = Path.Combine (dir.FullName, "day3.txt") |> File.ReadAllBytes
|
||||||
|
|
||||||
@@ -85,7 +91,71 @@ module Program =
|
|||||||
Console.WriteLine (part2.ToString ())
|
Console.WriteLine (part2.ToString ())
|
||||||
Console.Error.WriteLine ((1_000.0 * float sw.ElapsedTicks / float Stopwatch.Frequency).ToString () + "ms")
|
Console.Error.WriteLine ((1_000.0 * float sw.ElapsedTicks / float Stopwatch.Frequency).ToString () + "ms")
|
||||||
|
|
||||||
|
printfn "=====Day 4====="
|
||||||
|
|
||||||
|
do
|
||||||
|
let input = Path.Combine (dir.FullName, "day4.txt") |> File.ReadAllText
|
||||||
|
sw.Restart ()
|
||||||
|
let part1 = Day4.part1 input
|
||||||
|
sw.Stop ()
|
||||||
|
Console.WriteLine (part1.ToString ())
|
||||||
|
Console.Error.WriteLine ((1_000.0 * float sw.ElapsedTicks / float Stopwatch.Frequency).ToString () + "ms")
|
||||||
|
sw.Restart ()
|
||||||
|
let part2 = Day4.part2 input
|
||||||
|
sw.Stop ()
|
||||||
|
Console.WriteLine (part2.ToString ())
|
||||||
|
Console.Error.WriteLine ((1_000.0 * float sw.ElapsedTicks / float Stopwatch.Frequency).ToString () + "ms")
|
||||||
|
|
||||||
|
printfn "=====Day 5====="
|
||||||
|
|
||||||
|
do
|
||||||
|
let input = Path.Combine (dir.FullName, "day5.txt") |> File.ReadAllText
|
||||||
|
sw.Restart ()
|
||||||
|
let part1 = Day5.part1 input
|
||||||
|
sw.Stop ()
|
||||||
|
Console.WriteLine (part1.ToString ())
|
||||||
|
Console.Error.WriteLine ((1_000.0 * float sw.ElapsedTicks / float Stopwatch.Frequency).ToString () + "ms")
|
||||||
|
sw.Restart ()
|
||||||
|
let part2 = Day5.part2 input
|
||||||
|
sw.Stop ()
|
||||||
|
Console.WriteLine (part2.ToString ())
|
||||||
|
Console.Error.WriteLine ((1_000.0 * float sw.ElapsedTicks / float Stopwatch.Frequency).ToString () + "ms")
|
||||||
|
|
||||||
|
printfn "=====Day 6====="
|
||||||
|
|
||||||
|
do
|
||||||
|
let input = Path.Combine (dir.FullName, "day6.txt") |> File.ReadAllText
|
||||||
|
sw.Restart ()
|
||||||
|
let part1 = Day6.part1 input
|
||||||
|
sw.Stop ()
|
||||||
|
Console.WriteLine (part1.ToString ())
|
||||||
|
Console.Error.WriteLine ((1_000.0 * float sw.ElapsedTicks / float Stopwatch.Frequency).ToString () + "ms")
|
||||||
|
sw.Restart ()
|
||||||
|
let part2 = Day6.part2 input
|
||||||
|
sw.Stop ()
|
||||||
|
Console.WriteLine (part2.ToString ())
|
||||||
|
Console.Error.WriteLine ((1_000.0 * float sw.ElapsedTicks / float Stopwatch.Frequency).ToString () + "ms")
|
||||||
|
|
||||||
|
printfn "=====Day 7====="
|
||||||
|
|
||||||
|
do
|
||||||
|
let input = Path.Combine (dir.FullName, "day7.txt") |> File.ReadAllText
|
||||||
|
sw.Restart ()
|
||||||
|
let part1 = Day7.part1 input
|
||||||
|
sw.Stop ()
|
||||||
|
Console.WriteLine (part1.ToString ())
|
||||||
|
Console.Error.WriteLine ((1_000.0 * float sw.ElapsedTicks / float Stopwatch.Frequency).ToString () + "ms")
|
||||||
|
sw.Restart ()
|
||||||
|
let part2 = Day7.part2 input
|
||||||
|
sw.Stop ()
|
||||||
|
Console.WriteLine (part2.ToString ())
|
||||||
|
Console.Error.WriteLine ((1_000.0 * float sw.ElapsedTicks / float Stopwatch.Frequency).ToString () + "ms")
|
||||||
|
|
||||||
endToEnd.Stop ()
|
endToEnd.Stop ()
|
||||||
Console.Error.WriteLine ((1_000.0 * float endToEnd.ElapsedTicks / float Stopwatch.Frequency).ToString () + "ms total")
|
|
||||||
|
Console.Error.WriteLine (
|
||||||
|
(1_000.0 * float endToEnd.ElapsedTicks / float Stopwatch.Frequency).ToString ()
|
||||||
|
+ "ms total"
|
||||||
|
)
|
||||||
|
|
||||||
0
|
0
|
||||||
|
@@ -8,9 +8,22 @@
|
|||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
<Compile Include="Util.fs" />
|
||||||
<Compile Include="TestDay1.fs" />
|
<Compile Include="TestDay1.fs" />
|
||||||
<Compile Include="TestDay2.fs" />
|
<Compile Include="TestDay2.fs" />
|
||||||
<Compile Include="TestDay3.fs" />
|
<Compile Include="TestDay3.fs" />
|
||||||
|
<Compile Include="TestDay4.fs" />
|
||||||
|
<Compile Include="TestDay5.fs" />
|
||||||
|
<Compile Include="TestDay6.fs" />
|
||||||
|
<Compile Include="TestDay7.fs" />
|
||||||
|
<EmbeddedResource Include="samples\day1.txt" />
|
||||||
|
<EmbeddedResource Include="samples\day1part1.txt" />
|
||||||
|
<EmbeddedResource Include="samples\day2.txt" />
|
||||||
|
<EmbeddedResource Include="samples\day3.txt" />
|
||||||
|
<EmbeddedResource Include="samples\day4.txt" />
|
||||||
|
<EmbeddedResource Include="samples\day5.txt" />
|
||||||
|
<EmbeddedResource Include="samples\day6.txt" />
|
||||||
|
<EmbeddedResource Include="samples\day7.txt" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
@@ -8,26 +8,13 @@ open System.IO
|
|||||||
[<TestFixture>]
|
[<TestFixture>]
|
||||||
module TestDay1 =
|
module TestDay1 =
|
||||||
|
|
||||||
let sample1 =
|
let sample1 = Assembly.getEmbeddedResource typeof<Dummy>.Assembly "day1part1.txt"
|
||||||
"""1abc2
|
|
||||||
pqr3stu8vwx
|
|
||||||
a1b2c3d4e5f
|
|
||||||
treb7uchet
|
|
||||||
"""
|
|
||||||
|
|
||||||
[<Test>]
|
[<Test>]
|
||||||
let part1Sample () =
|
let part1Sample () =
|
||||||
sample1 |> Day1.part1 |> shouldEqual 142
|
sample1 |> Day1.part1 |> shouldEqual 142
|
||||||
|
|
||||||
let sample2 =
|
let sample2 = Assembly.getEmbeddedResource typeof<Dummy>.Assembly "day1.txt"
|
||||||
"""two1nine
|
|
||||||
eightwothree
|
|
||||||
abcone2threexyz
|
|
||||||
xtwone3four
|
|
||||||
4nineeightseven2
|
|
||||||
zoneight234
|
|
||||||
7pqrstsixteen
|
|
||||||
"""
|
|
||||||
|
|
||||||
[<Test>]
|
[<Test>]
|
||||||
let part2Sample () =
|
let part2Sample () =
|
||||||
@@ -38,7 +25,9 @@ zoneight234
|
|||||||
let s =
|
let s =
|
||||||
try
|
try
|
||||||
File.ReadAllText (Path.Combine (__SOURCE_DIRECTORY__, "../../inputs/day1.txt"))
|
File.ReadAllText (Path.Combine (__SOURCE_DIRECTORY__, "../../inputs/day1.txt"))
|
||||||
with :? FileNotFoundException ->
|
with
|
||||||
|
| :? DirectoryNotFoundException
|
||||||
|
| :? FileNotFoundException ->
|
||||||
Assert.Inconclusive ()
|
Assert.Inconclusive ()
|
||||||
failwith "unreachable"
|
failwith "unreachable"
|
||||||
|
|
||||||
@@ -49,7 +38,9 @@ zoneight234
|
|||||||
let s =
|
let s =
|
||||||
try
|
try
|
||||||
File.ReadAllText (Path.Combine (__SOURCE_DIRECTORY__, "../../inputs/day1.txt"))
|
File.ReadAllText (Path.Combine (__SOURCE_DIRECTORY__, "../../inputs/day1.txt"))
|
||||||
with :? FileNotFoundException ->
|
with
|
||||||
|
| :? DirectoryNotFoundException
|
||||||
|
| :? FileNotFoundException ->
|
||||||
Assert.Inconclusive ()
|
Assert.Inconclusive ()
|
||||||
failwith "unreachable"
|
failwith "unreachable"
|
||||||
|
|
||||||
|
@@ -8,13 +8,7 @@ open System.IO
|
|||||||
[<TestFixture>]
|
[<TestFixture>]
|
||||||
module TestDay2 =
|
module TestDay2 =
|
||||||
|
|
||||||
let sample =
|
let sample = Assembly.getEmbeddedResource typeof<Dummy>.Assembly "day2.txt"
|
||||||
"""Game 1: 3 blue, 4 red; 1 red, 2 green, 6 blue; 2 green
|
|
||||||
Game 2: 1 blue, 2 green; 3 green, 4 blue, 1 red; 1 green, 1 blue
|
|
||||||
Game 3: 8 green, 6 blue, 20 red; 5 blue, 4 red, 13 green; 5 green, 1 red
|
|
||||||
Game 4: 1 green, 3 red, 6 blue; 3 green, 6 red; 3 green, 15 blue, 14 red
|
|
||||||
Game 5: 6 red, 1 blue, 3 green; 2 blue, 1 red, 2 green
|
|
||||||
"""
|
|
||||||
|
|
||||||
[<Test>]
|
[<Test>]
|
||||||
let part1Sample () = sample |> Day2.part1 |> shouldEqual 8
|
let part1Sample () = sample |> Day2.part1 |> shouldEqual 8
|
||||||
@@ -28,7 +22,9 @@ Game 5: 6 red, 1 blue, 3 green; 2 blue, 1 red, 2 green
|
|||||||
let s =
|
let s =
|
||||||
try
|
try
|
||||||
File.ReadAllText (Path.Combine (__SOURCE_DIRECTORY__, "../../inputs/day2.txt"))
|
File.ReadAllText (Path.Combine (__SOURCE_DIRECTORY__, "../../inputs/day2.txt"))
|
||||||
with :? FileNotFoundException ->
|
with
|
||||||
|
| :? DirectoryNotFoundException
|
||||||
|
| :? FileNotFoundException ->
|
||||||
Assert.Inconclusive ()
|
Assert.Inconclusive ()
|
||||||
failwith "unreachable"
|
failwith "unreachable"
|
||||||
|
|
||||||
@@ -39,7 +35,9 @@ Game 5: 6 red, 1 blue, 3 green; 2 blue, 1 red, 2 green
|
|||||||
let s =
|
let s =
|
||||||
try
|
try
|
||||||
File.ReadAllText (Path.Combine (__SOURCE_DIRECTORY__, "../../inputs/day2.txt"))
|
File.ReadAllText (Path.Combine (__SOURCE_DIRECTORY__, "../../inputs/day2.txt"))
|
||||||
with :? FileNotFoundException ->
|
with
|
||||||
|
| :? DirectoryNotFoundException
|
||||||
|
| :? FileNotFoundException ->
|
||||||
Assert.Inconclusive ()
|
Assert.Inconclusive ()
|
||||||
failwith "unreachable"
|
failwith "unreachable"
|
||||||
|
|
||||||
|
@@ -13,18 +13,7 @@ open System.IO
|
|||||||
[<TestFixture>]
|
[<TestFixture>]
|
||||||
module TestDay3 =
|
module TestDay3 =
|
||||||
|
|
||||||
let sample =
|
let sample = Assembly.getEmbeddedResource typeof<Dummy>.Assembly "day3.txt"
|
||||||
"""467..114..
|
|
||||||
...*......
|
|
||||||
..35..633.
|
|
||||||
......#...
|
|
||||||
617*......
|
|
||||||
.....+.58.
|
|
||||||
..592.....
|
|
||||||
......755.
|
|
||||||
...$.*....
|
|
||||||
.664.598..
|
|
||||||
"""
|
|
||||||
|
|
||||||
[<Test>]
|
[<Test>]
|
||||||
let part1Sample () =
|
let part1Sample () =
|
||||||
@@ -77,7 +66,9 @@ module TestDay3 =
|
|||||||
let bytes =
|
let bytes =
|
||||||
try
|
try
|
||||||
File.ReadAllBytes (Path.Combine (__SOURCE_DIRECTORY__, "../../inputs/day3.txt"))
|
File.ReadAllBytes (Path.Combine (__SOURCE_DIRECTORY__, "../../inputs/day3.txt"))
|
||||||
with :? FileNotFoundException ->
|
with
|
||||||
|
| :? DirectoryNotFoundException
|
||||||
|
| :? FileNotFoundException ->
|
||||||
Assert.Inconclusive ()
|
Assert.Inconclusive ()
|
||||||
failwith "unreachable"
|
failwith "unreachable"
|
||||||
|
|
||||||
@@ -107,7 +98,9 @@ module TestDay3 =
|
|||||||
let bytes =
|
let bytes =
|
||||||
try
|
try
|
||||||
File.ReadAllBytes (Path.Combine (__SOURCE_DIRECTORY__, "../../inputs/day3.txt"))
|
File.ReadAllBytes (Path.Combine (__SOURCE_DIRECTORY__, "../../inputs/day3.txt"))
|
||||||
with :? FileNotFoundException ->
|
with
|
||||||
|
| :? DirectoryNotFoundException
|
||||||
|
| :? FileNotFoundException ->
|
||||||
Assert.Inconclusive ()
|
Assert.Inconclusive ()
|
||||||
failwith "unreachable"
|
failwith "unreachable"
|
||||||
|
|
||||||
|
43
AdventOfCode2023.FSharp/Test/TestDay4.fs
Normal file
43
AdventOfCode2023.FSharp/Test/TestDay4.fs
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
namespace AdventOfCode2023.Test
|
||||||
|
|
||||||
|
open AdventOfCode2023
|
||||||
|
open NUnit.Framework
|
||||||
|
open FsUnitTyped
|
||||||
|
open System.IO
|
||||||
|
|
||||||
|
[<TestFixture>]
|
||||||
|
module TestDay4 =
|
||||||
|
|
||||||
|
let sample = Assembly.getEmbeddedResource typeof<Dummy>.Assembly "day4.txt"
|
||||||
|
|
||||||
|
[<Test>]
|
||||||
|
let part1Sample () = sample |> Day4.part1 |> shouldEqual 13
|
||||||
|
|
||||||
|
[<Test>]
|
||||||
|
let part2Sample () = sample |> Day4.part2 |> shouldEqual 30
|
||||||
|
|
||||||
|
[<Test>]
|
||||||
|
let part1Actual () =
|
||||||
|
let s =
|
||||||
|
try
|
||||||
|
File.ReadAllText (Path.Combine (__SOURCE_DIRECTORY__, "../../inputs/day4.txt"))
|
||||||
|
with
|
||||||
|
| :? DirectoryNotFoundException
|
||||||
|
| :? FileNotFoundException ->
|
||||||
|
Assert.Inconclusive ()
|
||||||
|
failwith "unreachable"
|
||||||
|
|
||||||
|
Day4.part1 s |> shouldEqual 27454
|
||||||
|
|
||||||
|
[<Test>]
|
||||||
|
let part2Actual () =
|
||||||
|
let s =
|
||||||
|
try
|
||||||
|
File.ReadAllText (Path.Combine (__SOURCE_DIRECTORY__, "../../inputs/day4.txt"))
|
||||||
|
with
|
||||||
|
| :? DirectoryNotFoundException
|
||||||
|
| :? FileNotFoundException ->
|
||||||
|
Assert.Inconclusive ()
|
||||||
|
failwith "unreachable"
|
||||||
|
|
||||||
|
Day4.part2 s |> shouldEqual 6857330
|
46
AdventOfCode2023.FSharp/Test/TestDay5.fs
Normal file
46
AdventOfCode2023.FSharp/Test/TestDay5.fs
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
namespace AdventOfCode2023.Test
|
||||||
|
|
||||||
|
open System
|
||||||
|
open AdventOfCode2023
|
||||||
|
open NUnit.Framework
|
||||||
|
open FsUnitTyped
|
||||||
|
open System.IO
|
||||||
|
|
||||||
|
[<TestFixture>]
|
||||||
|
module TestDay5 =
|
||||||
|
|
||||||
|
let sample = Assembly.getEmbeddedResource typeof<Dummy>.Assembly "day5.txt"
|
||||||
|
|
||||||
|
[<Test>]
|
||||||
|
let part1Sample () =
|
||||||
|
sample |> Day5.part1 |> shouldEqual 35ul
|
||||||
|
|
||||||
|
[<Test>]
|
||||||
|
let part2Sample () =
|
||||||
|
sample |> Day5.part2 |> shouldEqual 46ul
|
||||||
|
|
||||||
|
[<Test>]
|
||||||
|
let part1Actual () =
|
||||||
|
let s =
|
||||||
|
try
|
||||||
|
File.ReadAllText (Path.Combine (__SOURCE_DIRECTORY__, "../../inputs/day5.txt"))
|
||||||
|
with
|
||||||
|
| :? DirectoryNotFoundException
|
||||||
|
| :? FileNotFoundException ->
|
||||||
|
Assert.Inconclusive ()
|
||||||
|
failwith "unreachable"
|
||||||
|
|
||||||
|
Day5.part1 s |> shouldEqual 806029445ul
|
||||||
|
|
||||||
|
[<Test>]
|
||||||
|
let part2Actual () =
|
||||||
|
let s =
|
||||||
|
try
|
||||||
|
File.ReadAllText (Path.Combine (__SOURCE_DIRECTORY__, "../../inputs/day5.txt"))
|
||||||
|
with
|
||||||
|
| :? DirectoryNotFoundException
|
||||||
|
| :? FileNotFoundException ->
|
||||||
|
Assert.Inconclusive ()
|
||||||
|
failwith "unreachable"
|
||||||
|
|
||||||
|
Day5.part2 s |> shouldEqual 59370572ul
|
46
AdventOfCode2023.FSharp/Test/TestDay6.fs
Normal file
46
AdventOfCode2023.FSharp/Test/TestDay6.fs
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
namespace AdventOfCode2023.Test
|
||||||
|
|
||||||
|
open System
|
||||||
|
open AdventOfCode2023
|
||||||
|
open NUnit.Framework
|
||||||
|
open FsUnitTyped
|
||||||
|
open System.IO
|
||||||
|
|
||||||
|
[<TestFixture>]
|
||||||
|
module TestDay6 =
|
||||||
|
|
||||||
|
let sample = Assembly.getEmbeddedResource typeof<Dummy>.Assembly "day6.txt"
|
||||||
|
|
||||||
|
[<Test>]
|
||||||
|
let part1Sample () =
|
||||||
|
sample |> Day6.part1 |> shouldEqual 288uL
|
||||||
|
|
||||||
|
[<Test>]
|
||||||
|
let part2Sample () =
|
||||||
|
sample |> Day6.part2 |> shouldEqual 71503uL
|
||||||
|
|
||||||
|
[<Test>]
|
||||||
|
let part1Actual () =
|
||||||
|
let s =
|
||||||
|
try
|
||||||
|
File.ReadAllText (Path.Combine (__SOURCE_DIRECTORY__, "../../inputs/day6.txt"))
|
||||||
|
with
|
||||||
|
| :? DirectoryNotFoundException
|
||||||
|
| :? FileNotFoundException ->
|
||||||
|
Assert.Inconclusive ()
|
||||||
|
failwith "unreachable"
|
||||||
|
|
||||||
|
Day6.part1 s |> shouldEqual 32076uL
|
||||||
|
|
||||||
|
[<Test>]
|
||||||
|
let part2Actual () =
|
||||||
|
let s =
|
||||||
|
try
|
||||||
|
File.ReadAllText (Path.Combine (__SOURCE_DIRECTORY__, "../../inputs/day6.txt"))
|
||||||
|
with
|
||||||
|
| :? DirectoryNotFoundException
|
||||||
|
| :? FileNotFoundException ->
|
||||||
|
Assert.Inconclusive ()
|
||||||
|
failwith "unreachable"
|
||||||
|
|
||||||
|
Day6.part2 s |> shouldEqual 34278221uL
|
46
AdventOfCode2023.FSharp/Test/TestDay7.fs
Normal file
46
AdventOfCode2023.FSharp/Test/TestDay7.fs
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
namespace AdventOfCode2023.Test
|
||||||
|
|
||||||
|
open System
|
||||||
|
open AdventOfCode2023
|
||||||
|
open NUnit.Framework
|
||||||
|
open FsUnitTyped
|
||||||
|
open System.IO
|
||||||
|
|
||||||
|
[<TestFixture>]
|
||||||
|
module TestDay7 =
|
||||||
|
|
||||||
|
let sample = Assembly.getEmbeddedResource typeof<Dummy>.Assembly "day7.txt"
|
||||||
|
|
||||||
|
[<Test>]
|
||||||
|
let part1Sample () =
|
||||||
|
sample |> Day7.part1 |> shouldEqual 6440
|
||||||
|
|
||||||
|
[<Test>]
|
||||||
|
let part2Sample () =
|
||||||
|
sample |> Day7.part2 |> shouldEqual 5905
|
||||||
|
|
||||||
|
[<Test>]
|
||||||
|
let part1Actual () =
|
||||||
|
let s =
|
||||||
|
try
|
||||||
|
File.ReadAllText (Path.Combine (__SOURCE_DIRECTORY__, "../../inputs/day7.txt"))
|
||||||
|
with
|
||||||
|
| :? DirectoryNotFoundException
|
||||||
|
| :? FileNotFoundException ->
|
||||||
|
Assert.Inconclusive ()
|
||||||
|
failwith "unreachable"
|
||||||
|
|
||||||
|
Day7.part1 s |> shouldEqual 250058342
|
||||||
|
|
||||||
|
[<Test>]
|
||||||
|
let part2Actual () =
|
||||||
|
let s =
|
||||||
|
try
|
||||||
|
File.ReadAllText (Path.Combine (__SOURCE_DIRECTORY__, "../../inputs/day7.txt"))
|
||||||
|
with
|
||||||
|
| :? DirectoryNotFoundException
|
||||||
|
| :? FileNotFoundException ->
|
||||||
|
Assert.Inconclusive ()
|
||||||
|
failwith "unreachable"
|
||||||
|
|
||||||
|
Day7.part2 s |> shouldEqual 250506580
|
22
AdventOfCode2023.FSharp/Test/Util.fs
Normal file
22
AdventOfCode2023.FSharp/Test/Util.fs
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
namespace AdventOfCode2023.Test
|
||||||
|
|
||||||
|
open System.IO
|
||||||
|
open System.Reflection
|
||||||
|
|
||||||
|
type Dummy =
|
||||||
|
class
|
||||||
|
end
|
||||||
|
|
||||||
|
[<RequireQualifiedAccess>]
|
||||||
|
module Assembly =
|
||||||
|
let getEmbeddedResource (assembly : Assembly) (name : string) : string =
|
||||||
|
let names = assembly.GetManifestResourceNames ()
|
||||||
|
let names = names |> Seq.filter (fun s -> s.EndsWith name)
|
||||||
|
|
||||||
|
use s =
|
||||||
|
names
|
||||||
|
|> Seq.exactlyOne
|
||||||
|
|> assembly.GetManifestResourceStream
|
||||||
|
|> fun s -> new StreamReader (s)
|
||||||
|
|
||||||
|
s.ReadToEnd ()
|
7
AdventOfCode2023.FSharp/Test/samples/day1.txt
Normal file
7
AdventOfCode2023.FSharp/Test/samples/day1.txt
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
two1nine
|
||||||
|
eightwothree
|
||||||
|
abcone2threexyz
|
||||||
|
xtwone3four
|
||||||
|
4nineeightseven2
|
||||||
|
zoneight234
|
||||||
|
7pqrstsixteen
|
4
AdventOfCode2023.FSharp/Test/samples/day1part1.txt
Normal file
4
AdventOfCode2023.FSharp/Test/samples/day1part1.txt
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
1abc2
|
||||||
|
pqr3stu8vwx
|
||||||
|
a1b2c3d4e5f
|
||||||
|
treb7uchet
|
5
AdventOfCode2023.FSharp/Test/samples/day2.txt
Normal file
5
AdventOfCode2023.FSharp/Test/samples/day2.txt
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
Game 1: 3 blue, 4 red; 1 red, 2 green, 6 blue; 2 green
|
||||||
|
Game 2: 1 blue, 2 green; 3 green, 4 blue, 1 red; 1 green, 1 blue
|
||||||
|
Game 3: 8 green, 6 blue, 20 red; 5 blue, 4 red, 13 green; 5 green, 1 red
|
||||||
|
Game 4: 1 green, 3 red, 6 blue; 3 green, 6 red; 3 green, 15 blue, 14 red
|
||||||
|
Game 5: 6 red, 1 blue, 3 green; 2 blue, 1 red, 2 green
|
10
AdventOfCode2023.FSharp/Test/samples/day3.txt
Normal file
10
AdventOfCode2023.FSharp/Test/samples/day3.txt
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
467..114..
|
||||||
|
...*......
|
||||||
|
..35..633.
|
||||||
|
......#...
|
||||||
|
617*......
|
||||||
|
.....+.58.
|
||||||
|
..592.....
|
||||||
|
......755.
|
||||||
|
...$.*....
|
||||||
|
.664.598..
|
6
AdventOfCode2023.FSharp/Test/samples/day4.txt
Normal file
6
AdventOfCode2023.FSharp/Test/samples/day4.txt
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
Card 1: 41 48 83 86 17 | 83 86 6 31 17 9 48 53
|
||||||
|
Card 2: 13 32 20 16 61 | 61 30 68 82 17 32 24 19
|
||||||
|
Card 3: 1 21 53 59 44 | 69 82 63 72 16 21 14 1
|
||||||
|
Card 4: 41 92 73 84 69 | 59 84 76 51 58 5 54 83
|
||||||
|
Card 5: 87 83 26 28 32 | 88 30 70 12 93 22 82 36
|
||||||
|
Card 6: 31 18 13 56 72 | 74 77 10 23 35 67 36 11
|
33
AdventOfCode2023.FSharp/Test/samples/day5.txt
Normal file
33
AdventOfCode2023.FSharp/Test/samples/day5.txt
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
seeds: 79 14 55 13
|
||||||
|
|
||||||
|
seed-to-soil map:
|
||||||
|
50 98 2
|
||||||
|
52 50 48
|
||||||
|
|
||||||
|
soil-to-fertilizer map:
|
||||||
|
0 15 37
|
||||||
|
37 52 2
|
||||||
|
39 0 15
|
||||||
|
|
||||||
|
fertilizer-to-water map:
|
||||||
|
49 53 8
|
||||||
|
0 11 42
|
||||||
|
42 0 7
|
||||||
|
57 7 4
|
||||||
|
|
||||||
|
water-to-light map:
|
||||||
|
88 18 7
|
||||||
|
18 25 70
|
||||||
|
|
||||||
|
light-to-temperature map:
|
||||||
|
45 77 23
|
||||||
|
81 45 19
|
||||||
|
68 64 13
|
||||||
|
|
||||||
|
temperature-to-humidity map:
|
||||||
|
0 69 1
|
||||||
|
1 0 69
|
||||||
|
|
||||||
|
humidity-to-location map:
|
||||||
|
60 56 37
|
||||||
|
56 93 4
|
2
AdventOfCode2023.FSharp/Test/samples/day6.txt
Normal file
2
AdventOfCode2023.FSharp/Test/samples/day6.txt
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
Time: 7 15 30
|
||||||
|
Distance: 9 40 200
|
5
AdventOfCode2023.FSharp/Test/samples/day7.txt
Normal file
5
AdventOfCode2023.FSharp/Test/samples/day7.txt
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
32T3K 765
|
||||||
|
T55J5 684
|
||||||
|
KK677 28
|
||||||
|
KTJJT 220
|
||||||
|
QQQJA 483
|
33
flake.nix
33
flake.nix
@@ -9,18 +9,37 @@
|
|||||||
self,
|
self,
|
||||||
nixpkgs,
|
nixpkgs,
|
||||||
flake-utils,
|
flake-utils,
|
||||||
}: flake-utils.lib.eachDefaultSystem (system:
|
}:
|
||||||
let pkgs = nixpkgs.legacyPackages.${system}; in
|
flake-utils.lib.eachDefaultSystem (
|
||||||
{
|
system: let
|
||||||
devShells = { default = pkgs.mkShell {
|
pkgs = nixpkgs.legacyPackages.${system};
|
||||||
buildInputs = with pkgs; [
|
in
|
||||||
|
# Conditionally include Swift and Apple SDK for Darwin systems
|
||||||
|
let
|
||||||
|
darwinDeps =
|
||||||
|
if system == "x86_64-darwin" || system == "aarch64-darwin"
|
||||||
|
then [
|
||||||
|
pkgs.swift
|
||||||
|
pkgs.darwin.apple_sdk.frameworks.Foundation
|
||||||
|
pkgs.darwin.apple_sdk.frameworks.CryptoKit
|
||||||
|
pkgs.darwin.apple_sdk.frameworks.GSS
|
||||||
|
]
|
||||||
|
else [];
|
||||||
|
in {
|
||||||
|
devShells = {
|
||||||
|
default = pkgs.mkShell {
|
||||||
|
buildInputs = with pkgs;
|
||||||
|
[
|
||||||
(with dotnetCorePackages;
|
(with dotnetCorePackages;
|
||||||
combinePackages [
|
combinePackages [
|
||||||
dotnet-sdk_8
|
dotnet-sdk_8
|
||||||
dotnetPackages.Nuget
|
dotnetPackages.Nuget
|
||||||
])
|
])
|
||||||
] ++ [pkgs.swift darwin.apple_sdk.frameworks.Foundation darwin.apple_sdk.frameworks.CryptoKit darwin.apple_sdk.frameworks.GSS pkgs.zlib pkgs.zlib.dev pkgs.openssl pkgs.icu];
|
]
|
||||||
};};
|
++ darwinDeps
|
||||||
|
++ [pkgs.zlib pkgs.zlib.dev pkgs.openssl pkgs.icu pkgs.alejandra];
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user