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": "Easy",
"likes": 722,
"dislikes": 1071,
"likes": 738,
"dislikes": 1090,
"isLiked": null,
"similarQuestions": "[]",
"exampleTestcases": "2\n3\n[[0,1],[1,1]]\n2\n2\n[[1,1],[0,0]]",
@@ -149,7 +149,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"77.8K\", \"totalSubmission\": \"99.1K\", \"totalAcceptedRaw\": 77807, \"totalSubmissionRaw\": 99137, \"acRate\": \"78.5%\"}",
"stats": "{\"totalAccepted\": \"78.8K\", \"totalSubmission\": \"100.3K\", \"totalAcceptedRaw\": 78754, \"totalSubmissionRaw\": 100308, \"acRate\": \"78.5%\"}",
"hints": [
"Simulation : With small constraints, it is possible to apply changes to each row and column and count odd cells after applying it.",
"You can accumulate the number you should add to each row and column and then you can count the number of odd cells."