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-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": 282,
"dislikes": 92,
"likes": 285,
"dislikes": 93,
"isLiked": null,
"similarQuestions": "[]",
"exampleTestcases": "[\"DetectSquares\",\"add\",\"add\",\"add\",\"count\",\"count\",\"add\",\"count\"]\n[[],[[3,10]],[[11,2]],[[3,2]],[[11,10]],[[14,8]],[[11,2]],[[11,10]]]",
@@ -155,7 +155,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"16.6K\", \"totalSubmission\": \"36.5K\", \"totalAcceptedRaw\": 16588, \"totalSubmissionRaw\": 36486, \"acRate\": \"45.5%\"}",
"stats": "{\"totalAccepted\": \"16.8K\", \"totalSubmission\": \"36.9K\", \"totalAcceptedRaw\": 16794, \"totalSubmissionRaw\": 36888, \"acRate\": \"45.5%\"}",
"hints": [
"Maintain the frequency of all the points in a hash map.",
"Traverse the hash map and if any point has the same y-coordinate as the query point, consider this point and the query point to form one of the horizontal lines of the square."