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": true,
"difficulty": "Medium",
"likes": 199,
"dislikes": 44,
"likes": 232,
"dislikes": 65,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Score After Flipping Matrix\", \"titleSlug\": \"score-after-flipping-matrix\", \"difficulty\": \"Medium\", \"translatedTitle\": null}, {\"title\": \"Minimum Number of Flips to Convert Binary Matrix to Zero Matrix\", \"titleSlug\": \"minimum-number-of-flips-to-convert-binary-matrix-to-zero-matrix\", \"difficulty\": \"Hard\", \"translatedTitle\": null}, {\"title\": \"Minimum Operations to Remove Adjacent Ones in Matrix\", \"titleSlug\": \"minimum-operations-to-remove-adjacent-ones-in-matrix\", \"difficulty\": \"Hard\", \"translatedTitle\": null}, {\"title\": \"Remove All Ones With Row and Column Flips II\", \"titleSlug\": \"remove-all-ones-with-row-and-column-flips-ii\", \"difficulty\": \"Medium\", \"translatedTitle\": null}]",
"exampleTestcases": "[[0,1,0],[1,0,1],[0,1,0]]\n[[1,1,0],[0,0,0],[0,0,0]]\n[[0]]",
@@ -46,7 +46,7 @@
],
"companyTagStats": null,
"codeSnippets": null,
"stats": "{\"totalAccepted\": \"9.5K\", \"totalSubmission\": \"12.4K\", \"totalAcceptedRaw\": 9494, \"totalSubmissionRaw\": 12404, \"acRate\": \"76.5%\"}",
"stats": "{\"totalAccepted\": \"12.7K\", \"totalSubmission\": \"16.6K\", \"totalAcceptedRaw\": 12694, \"totalSubmissionRaw\": 16556, \"acRate\": \"76.7%\"}",
"hints": [
"Does the order, in which you do the operations, matter?",
"No, it does not. An element will keep its original value if the number of operations done on it is even and vice versa. This also means that doing more than 1 operation on the same row or column is unproductive.",