chore: setup for day 15 puzzle
This commit is contained in:
@@ -0,0 +1,19 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<OutputType>Exe</OutputType>
|
||||||
|
<TargetFramework>net9.0</TargetFramework>
|
||||||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
<NoWarn>CA1822</NoWarn>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<ProjectReference Include="..\WarehouseWoes\WarehouseWoes.csproj" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<PackageReference Include="TUnit" Version="0.4.105" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
</Project>
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
using System.Diagnostics;
|
||||||
|
|
||||||
|
if (args.Length is 0)
|
||||||
|
{
|
||||||
|
Console.WriteLine("Please provide a path to the input file.");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (File.Exists(args[0]) is false)
|
||||||
|
{
|
||||||
|
Console.WriteLine("The provided file does not exist.");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
var isPart2 = args.Length is 2 && args[1] is "part2";
|
||||||
|
var input = await File.ReadAllLinesAsync(args[0]);
|
||||||
|
|
||||||
|
var stopwatch = new Stopwatch();
|
||||||
|
stopwatch.Start();
|
||||||
|
|
||||||
|
// TODO: Implement solution
|
||||||
|
|
||||||
|
stopwatch.Stop();
|
||||||
|
Console.WriteLine($". ({stopwatch.ElapsedMilliseconds}ms)");
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<OutputType>Exe</OutputType>
|
||||||
|
<TargetFramework>net9.0</TargetFramework>
|
||||||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
<NoWarn>CA1822</NoWarn>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<InternalsVisibleTo Include="$(AssemblyName).Tests" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<Content Include="..\INPUT.txt">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Content>
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
</Project>
|
||||||
@@ -106,6 +106,16 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RestroomRedoubt", "14\Restr
|
|||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RestroomRedoubt.Tests", "14\RestroomRedoubt.Tests\RestroomRedoubt.Tests.csproj", "{04FB2527-CCC9-4B4A-AF31-B07D553728DC}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RestroomRedoubt.Tests", "14\RestroomRedoubt.Tests\RestroomRedoubt.Tests.csproj", "{04FB2527-CCC9-4B4A-AF31-B07D553728DC}"
|
||||||
EndProject
|
EndProject
|
||||||
|
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "15", "15", "{4FDDAE22-D617-47B7-AF61-35178EA7F576}"
|
||||||
|
ProjectSection(SolutionItems) = preProject
|
||||||
|
15\INPUT.txt = 15\INPUT.txt
|
||||||
|
15\PROBLEM.md = 15\PROBLEM.md
|
||||||
|
EndProjectSection
|
||||||
|
EndProject
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WarehouseWoes", "15\WarehouseWoes\WarehouseWoes.csproj", "{5A8E58BA-698D-47B0-89AB-74A651DDA0EE}"
|
||||||
|
EndProject
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WarehouseWoes.Tests", "15\WarehouseWoes.Tests\WarehouseWoes.Tests.csproj", "{055CE647-AEFA-4501-B518-D16FF400E3D0}"
|
||||||
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
Debug|Any CPU = Debug|Any CPU
|
Debug|Any CPU = Debug|Any CPU
|
||||||
@@ -227,6 +237,14 @@ Global
|
|||||||
{04FB2527-CCC9-4B4A-AF31-B07D553728DC}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{04FB2527-CCC9-4B4A-AF31-B07D553728DC}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{04FB2527-CCC9-4B4A-AF31-B07D553728DC}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{04FB2527-CCC9-4B4A-AF31-B07D553728DC}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{04FB2527-CCC9-4B4A-AF31-B07D553728DC}.Release|Any CPU.Build.0 = Release|Any CPU
|
{04FB2527-CCC9-4B4A-AF31-B07D553728DC}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{5A8E58BA-698D-47B0-89AB-74A651DDA0EE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{5A8E58BA-698D-47B0-89AB-74A651DDA0EE}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{5A8E58BA-698D-47B0-89AB-74A651DDA0EE}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{5A8E58BA-698D-47B0-89AB-74A651DDA0EE}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{055CE647-AEFA-4501-B518-D16FF400E3D0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{055CE647-AEFA-4501-B518-D16FF400E3D0}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{055CE647-AEFA-4501-B518-D16FF400E3D0}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{055CE647-AEFA-4501-B518-D16FF400E3D0}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(NestedProjects) = preSolution
|
GlobalSection(NestedProjects) = preSolution
|
||||||
{1AFE2FF1-A55D-4D86-A9BB-9875CA0D14D8} = {270B7829-6D23-4B34-91FE-D87D533AF2AB}
|
{1AFE2FF1-A55D-4D86-A9BB-9875CA0D14D8} = {270B7829-6D23-4B34-91FE-D87D533AF2AB}
|
||||||
@@ -257,5 +275,7 @@ Global
|
|||||||
{EFA04F8A-F1F3-4F7E-8A06-91CF1DB82261} = {D7E6B364-455D-4CA4-AB45-93A320DBEBD6}
|
{EFA04F8A-F1F3-4F7E-8A06-91CF1DB82261} = {D7E6B364-455D-4CA4-AB45-93A320DBEBD6}
|
||||||
{456447AF-D3A2-4E18-83B2-9354B5278BF4} = {16AB207E-384E-4580-A134-96650AA0610F}
|
{456447AF-D3A2-4E18-83B2-9354B5278BF4} = {16AB207E-384E-4580-A134-96650AA0610F}
|
||||||
{04FB2527-CCC9-4B4A-AF31-B07D553728DC} = {16AB207E-384E-4580-A134-96650AA0610F}
|
{04FB2527-CCC9-4B4A-AF31-B07D553728DC} = {16AB207E-384E-4580-A134-96650AA0610F}
|
||||||
|
{5A8E58BA-698D-47B0-89AB-74A651DDA0EE} = {4FDDAE22-D617-47B7-AF61-35178EA7F576}
|
||||||
|
{055CE647-AEFA-4501-B518-D16FF400E3D0} = {4FDDAE22-D617-47B7-AF61-35178EA7F576}
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
EndGlobal
|
EndGlobal
|
||||||
|
|||||||
Reference in New Issue
Block a user