Skip to content

Commit f40d668

Browse files
authored
Update 1178.Number-of-Valid-Words-for-Each-Puzzle.md
1 parent df54373 commit f40d668

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)