fix comment

This commit is contained in:
Adam Jeniski 2025-10-19 11:50:50 -04:00 committed by GitHub
parent 1cd6a07cf8
commit 4a5ee3d100
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -44,5 +44,5 @@
(valid-combination-count #{"word"} "word") ; 1 (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] (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")
) )