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,7 +11,7 @@
"translatedContent": null,
"isPaidOnly": false,
"difficulty": "Medium",
"likes": 419,
"likes": 421,
"dislikes": 59,
"isLiked": null,
"similarQuestions": "[]",
@@ -149,7 +149,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"11.1K\", \"totalSubmission\": \"24.3K\", \"totalAcceptedRaw\": 11085, \"totalSubmissionRaw\": 24272, \"acRate\": \"45.7%\"}",
"stats": "{\"totalAccepted\": \"11.2K\", \"totalSubmission\": \"24.5K\", \"totalAcceptedRaw\": 11227, \"totalSubmissionRaw\": 24543, \"acRate\": \"45.7%\"}",
"hints": [
"For each row of the grid calculate the most right 1 in the grid in the array maxRight.",
"To check if there exist answer, sort maxRight and check if maxRight[i] ≤ i for all possible i's.",