1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-04 23:11:41 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
This commit is contained in:
2022-03-29 15:21:05 +08:00
parent b84ae535b7
commit e730aa6794
2244 changed files with 8703 additions and 59499 deletions

View File

@@ -155,7 +155,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"29.5K\", \"totalSubmission\": \"63.1K\", \"totalAcceptedRaw\": 29480, \"totalSubmissionRaw\": 63104, \"acRate\": \"46.7%\"}",
"stats": "{\"totalAccepted\": \"29.5K\", \"totalSubmission\": \"63.3K\", \"totalAcceptedRaw\": 29534, \"totalSubmissionRaw\": 63270, \"acRate\": \"46.7%\"}",
"hints": [
"We want to perform an exhaustive search, but we need to speed it up based on the input data being random. \r\n\r\nFor all stickers, we can ignore any letters that are not in the target word. \r\n\r\nWhen our candidate answer won't be smaller than an answer we have already found, we can stop searching this path. \r\n\r\nWhen a sticker dominates another, we shouldn't include the dominated sticker in our sticker collection. [Here, we say a sticker `A` dominates `B` if `A.count(letter) >= B.count(letter)` for all letters.]"
],