mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-04 15:01:40 +08:00
update
This commit is contained in:
@@ -12,7 +12,7 @@
|
||||
"translatedContent": "<p>编写一种方法,对字符串数组进行排序,将所有变位词组合在一起。变位词是指字母相同,但排列不同的字符串。</p>\n\n<p><strong>注意:</strong>本题相对原题稍作修改</p>\n\n<p><strong>示例:</strong></p>\n\n<pre><strong>输入:</strong> <code>["eat", "tea", "tan", "ate", "nat", "bat"]</code>,\n<strong>输出:</strong>\n[\n ["ate","eat","tea"],\n ["nat","tan"],\n ["bat"]\n]</pre>\n\n<p><strong>说明:</strong></p>\n\n<ul>\n\t<li>所有输入均为小写字母。</li>\n\t<li>不考虑答案输出的顺序。</li>\n</ul>\n",
|
||||
"isPaidOnly": false,
|
||||
"difficulty": "Medium",
|
||||
"likes": 94,
|
||||
"likes": 96,
|
||||
"dislikes": 0,
|
||||
"isLiked": null,
|
||||
"similarQuestions": "[]",
|
||||
@@ -149,7 +149,7 @@
|
||||
"__typename": "CodeSnippetNode"
|
||||
}
|
||||
],
|
||||
"stats": "{\"totalAccepted\": \"37.1K\", \"totalSubmission\": \"50.1K\", \"totalAcceptedRaw\": 37084, \"totalSubmissionRaw\": 50126, \"acRate\": \"74.0%\"}",
|
||||
"stats": "{\"totalAccepted\": \"37.5K\", \"totalSubmission\": \"50.7K\", \"totalAcceptedRaw\": 37541, \"totalSubmissionRaw\": 50736, \"acRate\": \"74.0%\"}",
|
||||
"hints": [
|
||||
"你如何检查两个单词是否互为变位词?想一想如何定义“变位词”。用你自己的话来解释一下。",
|
||||
"两个单词互为变位词是指含有相同的字符,但顺序不同。怎么才能把字符排好序呢?",
|
||||
|
Reference in New Issue
Block a user