mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-05 23:41:41 +08:00
update
This commit is contained in:
@@ -11,7 +11,7 @@
|
||||
"translatedContent": null,
|
||||
"isPaidOnly": false,
|
||||
"difficulty": "Hard",
|
||||
"likes": 627,
|
||||
"likes": 650,
|
||||
"dislikes": 22,
|
||||
"isLiked": null,
|
||||
"similarQuestions": "[{\"title\": \"Jump Game VII\", \"titleSlug\": \"jump-game-vii\", \"difficulty\": \"Medium\", \"translatedTitle\": null}]",
|
||||
@@ -131,7 +131,7 @@
|
||||
"__typename": "CodeSnippetNode"
|
||||
}
|
||||
],
|
||||
"stats": "{\"totalAccepted\": \"18.2K\", \"totalSubmission\": \"29.3K\", \"totalAcceptedRaw\": 18169, \"totalSubmissionRaw\": 29332, \"acRate\": \"61.9%\"}",
|
||||
"stats": "{\"totalAccepted\": \"18.6K\", \"totalSubmission\": \"29.9K\", \"totalAcceptedRaw\": 18607, \"totalSubmissionRaw\": 29946, \"acRate\": \"62.1%\"}",
|
||||
"hints": [
|
||||
"Use dynamic programming. dp[i] is max jumps you can do starting from index i. Answer is max(dp[i]).",
|
||||
"dp[i] = 1 + max (dp[j]) where j is all indices you can reach from i."
|
||||
|
Reference in New Issue
Block a user