mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-06 07:51:41 +08:00
update
This commit is contained in:
@@ -155,7 +155,7 @@
|
||||
"__typename": "CodeSnippetNode"
|
||||
}
|
||||
],
|
||||
"stats": "{\"totalAccepted\": \"7.6K\", \"totalSubmission\": \"12.8K\", \"totalAcceptedRaw\": 7643, \"totalSubmissionRaw\": 12787, \"acRate\": \"59.8%\"}",
|
||||
"stats": "{\"totalAccepted\": \"7.6K\", \"totalSubmission\": \"12.8K\", \"totalAcceptedRaw\": 7644, \"totalSubmissionRaw\": 12790, \"acRate\": \"59.8%\"}",
|
||||
"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