diff --git a/colors/try-hard.js b/colors/try-hard.js index 2bda6e5..d5502a5 100644 --- a/colors/try-hard.js +++ b/colors/try-hard.js @@ -104,7 +104,7 @@ export function getNodesWithWildcards(root, word) { /** @type LetterNode[][] */ const spreads = roots.flatMap(r => { const subresult = getNodesWithWildcards(r, remaining); - console.log("SUB", subresult); + // console.log("SUB", subresult); if (subresult.length === 0) { return [[...result, r]]; }