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:
2022-05-02 23:44:12 +08:00
parent 7ea03594b3
commit 2a71c78585
4790 changed files with 11696 additions and 10944 deletions

View File

@@ -11,8 +11,8 @@
"translatedContent": null,
"isPaidOnly": false,
"difficulty": "Easy",
"likes": 1663,
"dislikes": 101,
"likes": 1731,
"dislikes": 103,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Climbing Stairs\", \"titleSlug\": \"climbing-stairs\", \"difficulty\": \"Easy\", \"translatedTitle\": null}, {\"title\": \"Fibonacci Number\", \"titleSlug\": \"fibonacci-number\", \"difficulty\": \"Easy\", \"translatedTitle\": null}]",
"exampleTestcases": "4\n25",
@@ -131,7 +131,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"246.9K\", \"totalSubmission\": \"393.5K\", \"totalAcceptedRaw\": 246867, \"totalSubmissionRaw\": 393507, \"acRate\": \"62.7%\"}",
"stats": "{\"totalAccepted\": \"259.7K\", \"totalSubmission\": \"413.3K\", \"totalAcceptedRaw\": 259670, \"totalSubmissionRaw\": 413317, \"acRate\": \"62.8%\"}",
"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]."