1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-04 06:51:41 +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": "Medium",
"likes": 117,
"dislikes": 140,
"likes": 126,
"dislikes": 148,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Maximal Square\", \"titleSlug\": \"maximal-square\", \"difficulty\": \"Medium\", \"translatedTitle\": null}]",
"exampleTestcases": "2\n[[0,0,0,0],[0,1,1,1]]\n[[0,0],[0,1]]\n2\n[[0,0,0,0],[0,1,1,1]]\n[[0,0],[0,1],[1,1]]",
@@ -149,7 +149,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"13.1K\", \"totalSubmission\": \"24.4K\", \"totalAcceptedRaw\": 13108, \"totalSubmissionRaw\": 24393, \"acRate\": \"53.7%\"}",
"stats": "{\"totalAccepted\": \"13.9K\", \"totalSubmission\": \"25.9K\", \"totalAcceptedRaw\": 13933, \"totalSubmissionRaw\": 25875, \"acRate\": \"53.8%\"}",
"hints": [
"Check if each coordinate of each artifact has been excavated. How can we do this quickly without iterating over the dig array every time?",
"Consider marking all excavated cells in a 2D boolean array."