Add solution for "Day 20: Race Condition", part 2
This commit is contained in:
@@ -36,6 +36,7 @@ class Point2
|
||||
int x, y;
|
||||
Point2();
|
||||
Point2(const int x, const int y);
|
||||
int calcManhattanDistance(const Point2& other) const;
|
||||
bool operator==(const Point2& rhs) const;
|
||||
bool operator!=(const Point2& rhs) const;
|
||||
bool operator<(const Point2& rhs) const;
|
||||
|
||||
Reference in New Issue
Block a user