mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-05 07:21:40 +08:00
update
This commit is contained in:
@@ -12,7 +12,7 @@
|
||||
"translatedContent": null,
|
||||
"isPaidOnly": true,
|
||||
"difficulty": "Hard",
|
||||
"likes": 2,
|
||||
"likes": 4,
|
||||
"dislikes": 0,
|
||||
"isLiked": null,
|
||||
"similarQuestions": "[]",
|
||||
@@ -34,7 +34,7 @@
|
||||
],
|
||||
"companyTagStats": null,
|
||||
"codeSnippets": null,
|
||||
"stats": "{\"totalAccepted\": \"54\", \"totalSubmission\": \"110\", \"totalAcceptedRaw\": 54, \"totalSubmissionRaw\": 110, \"acRate\": \"49.1%\"}",
|
||||
"stats": "{\"totalAccepted\": \"64\", \"totalSubmission\": \"125\", \"totalAcceptedRaw\": 64, \"totalSubmissionRaw\": 125, \"acRate\": \"51.2%\"}",
|
||||
"hints": [
|
||||
"If you know the possible sums you can get for a range [l, r], how can you use this information to calculate the possible sums you can get for a range [l, r + 1]?",
|
||||
"For the range [l, r], if it is possible to choose elements such that the sum of elements you picked from nums1 is x and the sum of elements you picked from nums2 is y, then (x + nums1[r + 1], y) and (x, y + nums2[r + 1]) are possible sums you can get in the range [l, r + 1].",
|
||||
|
Reference in New Issue
Block a user