fix comment

This commit is contained in:
Adam Jeniski
2025-10-19 11:50:50 -04:00
committed by GitHub
parent 1cd6a07cf8
commit 4a5ee3d100
+1 -1
View File
@@ -44,5 +44,5 @@
(valid-combination-count #{"word"} "word") ; 1
(increment-counts-for-matching-words #{"wo" "or" "w" "rd" "d"} "word" [0 0 0 0] 0) ; [1 1 0 0]
(valid-combination-count #{"wo" "or" "w" "rd" "d"} "word") ; 2, because ("wo" "r" "d") and ("w")
(valid-combination-count #{"wo" "or" "w" "rd" "d"} "word") ; 2, because ("wo" "r" "d") and ("w" "or" "d")
)