mirror of
https://github.com/parnic/advent-of-code-2023.git
synced 2025-06-16 08:40:14 -05:00
I needed some help on part 2. Solving for enclosed points in a polygon is...not my forte.
7 lines
104 B
C#
7 lines
104 B
C#
namespace aoc2023.Util;
|
|
|
|
public static class Constants
|
|
{
|
|
public const char SolidBlock = '█';
|
|
}
|