1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-05 07:21:40 +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

@@ -155,7 +155,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"25K\", \"totalSubmission\": \"74K\", \"totalAcceptedRaw\": 24979, \"totalSubmissionRaw\": 73959, \"acRate\": \"33.8%\"}",
"stats": "{\"totalAccepted\": \"25K\", \"totalSubmission\": \"74K\", \"totalAcceptedRaw\": 24985, \"totalSubmissionRaw\": 73973, \"acRate\": \"33.8%\"}",
"hints": [
"The sum of chosen elements will not be too large. Consider using a hash set to record all possible sums while iterating each row.",
"Instead of keeping track of all possible sums, since in each row, we are adding positive numbers, only keep those that can be a candidate, not exceeding the target by too much."