This commit is contained in:
Kodai Nakamura 2025-02-22 21:41:06 +09:00
parent d40c041430
commit fd69706fd2

View file

@ -56,7 +56,7 @@ export const buildTrie = (words: string[], ignoreCase = false): TrieNode => {
}
node = child;
}
node.candidate = word; // 元の大文字小文字を保持
node.candidate = word; // preserve the original case
}
return root;