🚀 bootstrap workspace
This commit is contained in:
13
packages/compute/index.ts
Normal file
13
packages/compute/index.ts
Normal 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 [];
|
||||
};
|
||||
Reference in New Issue
Block a user