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

@@ -149,7 +149,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"89.4K\", \"totalSubmission\": \"166.1K\", \"totalAcceptedRaw\": 89396, \"totalSubmissionRaw\": 166089, \"acRate\": \"53.8%\"}",
"stats": "{\"totalAccepted\": \"89.4K\", \"totalSubmission\": \"166.1K\", \"totalAcceptedRaw\": 89398, \"totalSubmissionRaw\": 166093, \"acRate\": \"53.8%\"}",
"hints": [
"如果一个字符串是另一个字符串的旋转那么它就是在某个特定点上的旋转。例如字符串waterbottle在3处的旋转意味着在第三个字符处切割waterbottle并在左半部分wat之前放置右半部分erbottle。",
"本质上我们是在寻找是否有一种方式可以把第一个字符串分成两部分即x和y如此一来第一个字符串就是xy第二个字符串就是yx。例如x = waty = erbottle。那么第一个字符串xy = waterbottle第二个字符串yx = erbottlewat。",