1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-04 23:11:41 +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": 116,
"dislikes": 26,
"likes": 146,
"dislikes": 30,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Excel Sheet Column Title\", \"titleSlug\": \"excel-sheet-column-title\", \"difficulty\": \"Easy\", \"translatedTitle\": null}, {\"title\": \"Excel Sheet Column Number\", \"titleSlug\": \"excel-sheet-column-number\", \"difficulty\": \"Easy\", \"translatedTitle\": null}, {\"title\": \"Matrix Cells in Distance Order\", \"titleSlug\": \"matrix-cells-in-distance-order\", \"difficulty\": \"Easy\", \"translatedTitle\": null}]",
"exampleTestcases": "\"K1:L2\"\n\"A1:F1\"",
@@ -137,7 +137,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"19.2K\", \"totalSubmission\": \"22.4K\", \"totalAcceptedRaw\": 19185, \"totalSubmissionRaw\": 22437, \"acRate\": \"85.5%\"}",
"stats": "{\"totalAccepted\": \"21.4K\", \"totalSubmission\": \"25K\", \"totalAcceptedRaw\": 21389, \"totalSubmissionRaw\": 24967, \"acRate\": \"85.7%\"}",
"hints": [
"From the given string, find the corresponding rows and columns.",
"Iterate through the columns in ascending order and for each column, iterate through the rows in ascending order to obtain the required cells in sorted order."