This commit is contained in:
Smaug123
2023-12-11 22:39:56 +00:00
parent 916e29c24e
commit 73a017862a
6 changed files with 83 additions and 0 deletions

View File

@@ -22,6 +22,7 @@
<Compile Include="Day9.fs"/>
<Compile Include="Day10.fs" />
<Compile Include="Day11.fs" />
<Compile Include="Day12.fs" />
</ItemGroup>
</Project>

View File

@@ -0,0 +1,14 @@
namespace AdventOfCode2023
[<RequireQualifiedAccess>]
module Day12 =
let part1 (s : string) =
use mutable lines = StringSplitEnumerator.make '\n' s
-1
let part2 (s : string) =
use mutable lines = StringSplitEnumerator.make '\n' s
-1