Scaffolding
This commit is contained in:
@@ -13,6 +13,7 @@
|
||||
<Compile Include="Day3.fs" />
|
||||
<Compile Include="Day4.fs" />
|
||||
<Compile Include="Day5.fs" />
|
||||
<Compile Include="Day6.fs" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
14
AdventOfCode2023.FSharp/AdventOfCode2023.FSharp.Lib/Day6.fs
Normal file
14
AdventOfCode2023.FSharp/AdventOfCode2023.FSharp.Lib/Day6.fs
Normal file
@@ -0,0 +1,14 @@
|
||||
namespace AdventOfCode2023
|
||||
|
||||
open System
|
||||
|
||||
[<RequireQualifiedAccess>]
|
||||
module Day6 =
|
||||
|
||||
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