Bones
This commit is contained in:
@@ -22,6 +22,7 @@
|
||||
<Compile Include="Day9.fs"/>
|
||||
<Compile Include="Day10.fs" />
|
||||
<Compile Include="Day11.fs" />
|
||||
<Compile Include="Day12.fs" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
14
AdventOfCode2023.FSharp/AdventOfCode2023.FSharp.Lib/Day12.fs
Normal file
14
AdventOfCode2023.FSharp/AdventOfCode2023.FSharp.Lib/Day12.fs
Normal 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
|
Reference in New Issue
Block a user