🚀 bootstrap workspace

This commit is contained in:
platane
2020-07-16 01:19:21 +02:00
commit e9654e7e66
14 changed files with 7679 additions and 0 deletions

13
packages/compute/index.ts Normal file
View File

@@ -0,0 +1,13 @@
import { Grid, Color } from "./grid";
type Point = { x: number; y: number };
export const computeBestRun = (
pattern: Color[],
grid: Grid,
originalPosition: Point
) => {
console.log(pattern, grid, originalPosition);
return [];
};