1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-06 07:51:41 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
This commit is contained in:
2023-12-09 19:57:46 +08:00
parent 9bc4722a45
commit 3770b44d1e
4792 changed files with 10889 additions and 10886 deletions

View File

@@ -167,7 +167,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"607K\", \"totalSubmission\": \"1.7M\", \"totalAcceptedRaw\": 607010, \"totalSubmissionRaw\": 1678823, \"acRate\": \"36.2%\"}",
"stats": "{\"totalAccepted\": \"607K\", \"totalSubmission\": \"1.7M\", \"totalAcceptedRaw\": 607031, \"totalSubmissionRaw\": 1678875, \"acRate\": \"36.2%\"}",
"hints": [
"You would need to optimize your backtracking to pass the larger test. Could you stop backtracking earlier?",
"If the current candidate does not exist in all words&#39; prefix, you could stop backtracking immediately. What kind of data structure could answer such query efficiently? Does a hash table work? Why or why not? How about a Trie? If you would like to learn how to implement a basic trie, please work on this problem: <a href=\"https://leetcode.com/problems/implement-trie-prefix-tree/\">Implement Trie (Prefix Tree)</a> first."