Add solution for 2025 Day 9

This commit is contained in:
Thraix
2025-12-09 08:01:49 +01:00
parent a31feacf85
commit 90bbec630e
4 changed files with 160 additions and 18 deletions
-5
View File
@@ -14,11 +14,6 @@ struct Index2D
return x != -1 && y != -1;
}
operator bool()
{
return IsValid();
}
Index2D operator+(const Index2D& other) const
{
return Index2D{x + other.x, y + other.y};