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,7 +11,7 @@
"translatedContent": null,
"isPaidOnly": false,
"difficulty": "Medium",
"likes": 3190,
"likes": 3197,
"dislikes": 159,
"isLiked": null,
"similarQuestions": "[]",
@@ -161,7 +161,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"191.6K\", \"totalSubmission\": \"331.9K\", \"totalAcceptedRaw\": 191592, \"totalSubmissionRaw\": 331875, \"acRate\": \"57.7%\"}",
"stats": "{\"totalAccepted\": \"192.1K\", \"totalSubmission\": \"332.6K\", \"totalAcceptedRaw\": 192078, \"totalSubmissionRaw\": 332593, \"acRate\": \"57.8%\"}",
"hints": [
"Instead of adding a character, try deleting a character to form a chain in reverse.",
"For each word in order of length, for each word2 which is word with one character removed, length[word2] = max(length[word2], length[word] + 1)."