1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-04 15:01: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": "Hard",
"likes": 358,
"dislikes": 488,
"likes": 376,
"dislikes": 517,
"isLiked": null,
"similarQuestions": "[]",
"exampleTestcases": "[[2,1],[2,2],[3,3]]\n90\n[1,1]\n[[2,1],[2,2],[3,4],[1,1]]\n90\n[1,1]\n[[1,0],[2,1]]\n13\n[1,1]",
@@ -161,7 +161,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"24.5K\", \"totalSubmission\": \"67.5K\", \"totalAcceptedRaw\": 24499, \"totalSubmissionRaw\": 67464, \"acRate\": \"36.3%\"}",
"stats": "{\"totalAccepted\": \"25.8K\", \"totalSubmission\": \"70.6K\", \"totalAcceptedRaw\": 25843, \"totalSubmissionRaw\": 70566, \"acRate\": \"36.6%\"}",
"hints": [
"Sort the points by polar angle with the original position. Now only a consecutive collection of points would be visible from any coordinate.",
"We can use two pointers to keep track of visible points for each start point",