diff --git a/src/frontend/app.ts b/src/frontend/app.ts index 83b3e3c..551b2de 100644 --- a/src/frontend/app.ts +++ b/src/frontend/app.ts @@ -1,10 +1,5 @@ -import { computeAllSolutions } from "../shared/solver.ts"; -import { rules } from "../shared/tictactoe-rules.ts"; import { initializeWebComponents } from "./components/index.ts"; document.addEventListener("DOMContentLoaded", function () { initializeWebComponents(); - const allSolutions = computeAllSolutions(3, 3, rules); - console.log(allSolutions.size); - console.log(allSolutions); });