Fix goreport bug

This commit is contained in:
halfrost
2022-09-10 10:38:39 -07:00
parent dff1d84e1e
commit a655d95eea
8 changed files with 30 additions and 29 deletions

View File

@ -34,7 +34,7 @@ func findWord(roots map[byte][]string, word []byte) bool {
return false
}
//解法二 Trie
// 解法二 Trie
func replaceWords1(dict []string, sentence string) string {
trie := Constructor208()
for _, v := range dict {