I needed some help on part 2. Solving for enclosed points in a polygon is...not my forte.
This commit is contained in:
2023-12-10 01:11:26 -06:00
parent a98c34a9df
commit 4cac4bd164
5 changed files with 421 additions and 0 deletions

6
src/Util/Constants.cs Normal file
View File

@ -0,0 +1,6 @@
namespace aoc2023.Util;
public static class Constants
{
public const char SolidBlock = '█';
}