🚀 getAvailableRoute

This commit is contained in:
platane
2020-07-30 16:27:04 +02:00
parent 48d89528d5
commit 9ab55aaad6
3 changed files with 168 additions and 0 deletions

View File

@@ -6,3 +6,5 @@ export const around4 = [
{ x: -1, y: 0 },
{ x: 0, y: 1 },
];
export const pointEquals = (a: Point, b: Point) => a.x === b.x && a.y === b.y;