misc
This commit is contained in:
27
AdventOfCode/Problems/AOC2022/Day12/HillClimbing.cs
Normal file
27
AdventOfCode/Problems/AOC2022/Day12/HillClimbing.cs
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
using AdventOfCode.Runner.Attributes;
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace AdventOfCode.Problems.AOC2022.Day12;
|
||||||
|
[ProblemInfo(2022, 12, "Hill Climbing Algorithm")]
|
||||||
|
internal class HillClimbing : Problem
|
||||||
|
{
|
||||||
|
public override void CalculatePart1()
|
||||||
|
{
|
||||||
|
throw new NotImplementedException();
|
||||||
|
}
|
||||||
|
|
||||||
|
public override void CalculatePart2()
|
||||||
|
{
|
||||||
|
throw new NotImplementedException();
|
||||||
|
}
|
||||||
|
|
||||||
|
public override void LoadInput()
|
||||||
|
{
|
||||||
|
throw new NotImplementedException();
|
||||||
|
}
|
||||||
|
}
|
||||||
27
AdventOfCode/Problems/AOC2022/Day13/DistressSignal.cs
Normal file
27
AdventOfCode/Problems/AOC2022/Day13/DistressSignal.cs
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
using AdventOfCode.Runner.Attributes;
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace AdventOfCode.Problems.AOC2022.Day13;
|
||||||
|
[ProblemInfo(2022, 13, "Distress Signal")]
|
||||||
|
internal class DistressSignal : Problem
|
||||||
|
{
|
||||||
|
public override void CalculatePart1()
|
||||||
|
{
|
||||||
|
throw new NotImplementedException();
|
||||||
|
}
|
||||||
|
|
||||||
|
public override void CalculatePart2()
|
||||||
|
{
|
||||||
|
throw new NotImplementedException();
|
||||||
|
}
|
||||||
|
|
||||||
|
public override void LoadInput()
|
||||||
|
{
|
||||||
|
throw new NotImplementedException();
|
||||||
|
}
|
||||||
|
}
|
||||||
27
AdventOfCode/Problems/AOC2022/Day14/RegolithReservoir.cs
Normal file
27
AdventOfCode/Problems/AOC2022/Day14/RegolithReservoir.cs
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
using AdventOfCode.Runner.Attributes;
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace AdventOfCode.Problems.AOC2022.Day14;
|
||||||
|
[ProblemInfo(2022, 14, "Regolith Reservoir")]
|
||||||
|
internal class RegolithReservoir : Problem
|
||||||
|
{
|
||||||
|
public override void CalculatePart1()
|
||||||
|
{
|
||||||
|
throw new NotImplementedException();
|
||||||
|
}
|
||||||
|
|
||||||
|
public override void CalculatePart2()
|
||||||
|
{
|
||||||
|
throw new NotImplementedException();
|
||||||
|
}
|
||||||
|
|
||||||
|
public override void LoadInput()
|
||||||
|
{
|
||||||
|
throw new NotImplementedException();
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -25,6 +25,9 @@ public class AOCRunner
|
|||||||
_years = new List<int>();
|
_years = new List<int>();
|
||||||
_selectedYear = DateTime.Now.Year;
|
_selectedYear = DateTime.Now.Year;
|
||||||
FindProblemClasses();
|
FindProblemClasses();
|
||||||
|
|
||||||
|
if(!_loadedProblems.ContainsKey(_selectedYear))
|
||||||
|
_selectedYear = _loadedProblems.Keys.First();
|
||||||
|
|
||||||
InitSizing();
|
InitSizing();
|
||||||
if (_years.Count > 0)
|
if (_years.Count > 0)
|
||||||
|
|||||||
Reference in New Issue
Block a user