1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-05 07:21:40 +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

@@ -155,7 +155,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"9K\", \"totalSubmission\": \"26.6K\", \"totalAcceptedRaw\": 9012, \"totalSubmissionRaw\": 26624, \"acRate\": \"33.8%\"}",
"stats": "{\"totalAccepted\": \"9K\", \"totalSubmission\": \"26.7K\", \"totalAcceptedRaw\": 9030, \"totalSubmissionRaw\": 26652, \"acRate\": \"33.9%\"}",
"hints": [
"Iterate on each letter in the alphabet, and check the smallest number of operations needed to make it one of the following: the largest letter in a and smaller than the smallest one in b, vice versa, or let a and b consist only of this letter.",
"For the first 2 conditions, take care that you can only change characters to lowercase letters, so you can't make 'z' the smallest letter in one of the strings or 'a' the largest letter in one of them."