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-03-29 15:21:05 +08:00
parent b84ae535b7
commit e730aa6794
2244 changed files with 8703 additions and 59499 deletions

View File

@@ -11,8 +11,8 @@
"translatedContent": null,
"isPaidOnly": false,
"difficulty": "Medium",
"likes": 1324,
"dislikes": 3374,
"likes": 1328,
"dislikes": 3384,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Encode and Decode Strings\", \"titleSlug\": \"encode-and-decode-strings\", \"difficulty\": \"Medium\", \"translatedTitle\": null}, {\"title\": \"String Compression\", \"titleSlug\": \"string-compression\", \"difficulty\": \"Medium\", \"translatedTitle\": null}]",
"exampleTestcases": "1\n4",
@@ -137,7 +137,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"608.4K\", \"totalSubmission\": \"1.3M\", \"totalAcceptedRaw\": 608412, \"totalSubmissionRaw\": 1256295, \"acRate\": \"48.4%\"}",
"stats": "{\"totalAccepted\": \"609K\", \"totalSubmission\": \"1.3M\", \"totalAcceptedRaw\": 608982, \"totalSubmissionRaw\": 1257202, \"acRate\": \"48.4%\"}",
"hints": [
"The following are the terms from n=1 to n=10 of the count-and-say sequence:\r\n<pre>\r\n 1. 1\r\n 2. 11\r\n 3. 21\r\n 4. 1211\r\n 5. 111221 \r\n 6. 312211\r\n 7. 13112221\r\n 8. 1113213211\r\n 9. 31131211131221\r\n10. 13211311123113112211\r\n</pre>",
"To generate the <i>n</i><sup>th</sup> term, just <i>count and say</i> the <i>n</i>-1<sup>th</sup> term."