1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-05 15:31:43 +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": "Hard",
"likes": 226,
"dislikes": 10,
"likes": 261,
"dislikes": 11,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Edit Distance\", \"titleSlug\": \"edit-distance\", \"difficulty\": \"Hard\", \"translatedTitle\": null}]",
"exampleTestcases": "\"10110101\"\n2\n2\n\"11111\"\n2\n3",
@@ -149,7 +149,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"5.4K\", \"totalSubmission\": \"18K\", \"totalAcceptedRaw\": 5415, \"totalSubmissionRaw\": 17971, \"acRate\": \"30.1%\"}",
"stats": "{\"totalAccepted\": \"6.4K\", \"totalSubmission\": \"20.3K\", \"totalAcceptedRaw\": 6387, \"totalSubmissionRaw\": 20322, \"acRate\": \"31.4%\"}",
"hints": [
"Can you think of a DP solution?",
"Let DP[i][j] denote the minimum number of white tiles still visible from indices i to floor.length-1 after covering with at most j carpets.",