Initial commit

This commit is contained in:
2026-02-08 01:06:19 +01:00
commit 235fd3022f
25 changed files with 3339 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import { computed } from 'vue';
import { calculateHints } from '@/utils/puzzleUtils';
export function useHints(solutionGrid) {
const hints = computed(() => calculateHints(solutionGrid.value));
const rowHints = computed(() => hints.value.rowHints);
const colHints = computed(() => hints.value.colHints);
return {
rowHints,
colHints
};
}