1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-06 07:51:41 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
This commit is contained in:
2023-12-09 19:57:46 +08:00
parent 9bc4722a45
commit 3770b44d1e
4792 changed files with 10889 additions and 10886 deletions

View File

@@ -161,7 +161,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"12.7K\", \"totalSubmission\": \"35.3K\", \"totalAcceptedRaw\": 12662, \"totalSubmissionRaw\": 35255, \"acRate\": \"35.9%\"}",
"stats": "{\"totalAccepted\": \"12.7K\", \"totalSubmission\": \"35.3K\", \"totalAcceptedRaw\": 12665, \"totalSubmissionRaw\": 35259, \"acRate\": \"35.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."