Skip to content

Commit ef2f198

Browse files
authored
Merge pull request #186 from dotcom900825/patch-2
Minor type fix 1178.Number-of-Valid-Words-for-Each-Puzzle.md
2 parents 04eae30 + f40d668 commit ef2f198

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

website/content/ChapterFour/1100~1199/1178.Number-of-Valid-Words-for-Each-Puzzle.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ func toBitMap(word []byte) uint32 {
9999
return res
100100
}
101101

102-
//利用dfs 搜索 pussles的子空间
102+
//利用dfs 搜索 puzzles的子空间
103103
func findNum(puzzles []byte, bitMap uint32, totalNum *int, m map[uint32]int) {
104104
if len(puzzles) == 0 {
105105
*totalNum = *totalNum + m[bitMap]

0 commit comments

Comments
 (0)