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": "Medium",
"likes": 354,
"dislikes": 40,
"likes": 383,
"dislikes": 41,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Minesweeper\", \"titleSlug\": \"minesweeper\", \"difficulty\": \"Medium\", \"translatedTitle\": null}, {\"title\": \"Number of Provinces\", \"titleSlug\": \"number-of-provinces\", \"difficulty\": \"Medium\", \"translatedTitle\": null}, {\"title\": \"Max Area of Island\", \"titleSlug\": \"max-area-of-island\", \"difficulty\": \"Medium\", \"translatedTitle\": null}, {\"title\": \"Rotting Oranges\", \"titleSlug\": \"rotting-oranges\", \"difficulty\": \"Medium\", \"translatedTitle\": null}]",
"exampleTestcases": "[[2,1,3],[6,1,4]]\n[[1,1,5],[10,10,5]]\n[[1,2,3],[2,3,1],[3,4,2],[4,5,3],[5,6,4]]",
@@ -167,7 +167,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"9.3K\", \"totalSubmission\": \"23.5K\", \"totalAcceptedRaw\": 9333, \"totalSubmissionRaw\": 23487, \"acRate\": \"39.7%\"}",
"stats": "{\"totalAccepted\": \"10.3K\", \"totalSubmission\": \"25.8K\", \"totalAcceptedRaw\": 10297, \"totalSubmissionRaw\": 25751, \"acRate\": \"40.0%\"}",
"hints": [
"How can we model the relationship between different bombs? Can \"graphs\" help us?",
"Bombs are nodes and are connected to other bombs in their range by directed edges.",