mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-04 23:11:41 +08:00
update
This commit is contained in:
@@ -11,7 +11,7 @@
|
||||
"translatedContent": null,
|
||||
"isPaidOnly": false,
|
||||
"difficulty": "Easy",
|
||||
"likes": 1658,
|
||||
"likes": 1663,
|
||||
"dislikes": 101,
|
||||
"isLiked": null,
|
||||
"similarQuestions": "[{\"title\": \"Climbing Stairs\", \"titleSlug\": \"climbing-stairs\", \"difficulty\": \"Easy\", \"translatedTitle\": null}, {\"title\": \"Fibonacci Number\", \"titleSlug\": \"fibonacci-number\", \"difficulty\": \"Easy\", \"translatedTitle\": null}]",
|
||||
@@ -131,7 +131,7 @@
|
||||
"__typename": "CodeSnippetNode"
|
||||
}
|
||||
],
|
||||
"stats": "{\"totalAccepted\": \"245.8K\", \"totalSubmission\": \"391.9K\", \"totalAcceptedRaw\": 245794, \"totalSubmissionRaw\": 391905, \"acRate\": \"62.7%\"}",
|
||||
"stats": "{\"totalAccepted\": \"246.9K\", \"totalSubmission\": \"393.5K\", \"totalAcceptedRaw\": 246867, \"totalSubmissionRaw\": 393507, \"acRate\": \"62.7%\"}",
|
||||
"hints": [
|
||||
"Make an array F of length 38, and set F[0] = 0, F[1] = F[2] = 1.",
|
||||
"Now write a loop where you set F[n+3] = F[n] + F[n+1] + F[n+2], and return F[n]."
|
||||
|
Reference in New Issue
Block a user