1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-06 16:01: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": "Easy",
"likes": 721,
"dislikes": 1069,
"likes": 722,
"dislikes": 1071,
"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.7K\", \"totalSubmission\": \"99K\", \"totalAcceptedRaw\": 77714, \"totalSubmissionRaw\": 98989, \"acRate\": \"78.5%\"}",
"stats": "{\"totalAccepted\": \"77.8K\", \"totalSubmission\": \"99.1K\", \"totalAcceptedRaw\": 77807, \"totalSubmissionRaw\": 99137, \"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."