mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-05 23:41:41 +08:00
update
This commit is contained in:
@@ -12,7 +12,7 @@
|
||||
"translatedContent": "<p>给你一个字符串数组,请你将 <strong>字母异位词</strong> 组合在一起。可以按任意顺序返回结果列表。</p>\n\n<p><strong>字母异位词</strong> 是由重新排列源单词的所有字母得到的一个新单词。</p>\n\n<p> </p>\n\n<p><strong>示例 1:</strong></p>\n\n<pre>\n<strong>输入:</strong> strs = <code>[\"eat\", \"tea\", \"tan\", \"ate\", \"nat\", \"bat\"]</code>\n<strong>输出: </strong>[[\"bat\"],[\"nat\",\"tan\"],[\"ate\",\"eat\",\"tea\"]]</pre>\n\n<p><strong>示例 2:</strong></p>\n\n<pre>\n<strong>输入:</strong> strs = <code>[\"\"]</code>\n<strong>输出: </strong>[[\"\"]]\n</pre>\n\n<p><strong>示例 3:</strong></p>\n\n<pre>\n<strong>输入:</strong> strs = <code>[\"a\"]</code>\n<strong>输出: </strong>[[\"a\"]]</pre>\n\n<p> </p>\n\n<p><strong>提示:</strong></p>\n\n<ul>\n\t<li><code>1 <= strs.length <= 10<sup>4</sup></code></li>\n\t<li><code>0 <= strs[i].length <= 100</code></li>\n\t<li><code>strs[i]</code> 仅包含小写字母</li>\n</ul>\n",
|
||||
"isPaidOnly": false,
|
||||
"difficulty": "Medium",
|
||||
"likes": 1751,
|
||||
"likes": 1752,
|
||||
"dislikes": 0,
|
||||
"isLiked": null,
|
||||
"similarQuestions": "[{\"title\": \"Valid Anagram\", \"titleSlug\": \"valid-anagram\", \"difficulty\": \"Easy\", \"translatedTitle\": \"\\u6709\\u6548\\u7684\\u5b57\\u6bcd\\u5f02\\u4f4d\\u8bcd\", \"isPaidOnly\": false}, {\"title\": \"Group Shifted Strings\", \"titleSlug\": \"group-shifted-strings\", \"difficulty\": \"Medium\", \"translatedTitle\": \"\\u79fb\\u4f4d\\u5b57\\u7b26\\u4e32\\u5206\\u7ec4\", \"isPaidOnly\": true}]",
|
||||
@@ -161,7 +161,7 @@
|
||||
"__typename": "CodeSnippetNode"
|
||||
}
|
||||
],
|
||||
"stats": "{\"totalAccepted\": \"571.2K\", \"totalSubmission\": \"843.2K\", \"totalAcceptedRaw\": 571157, \"totalSubmissionRaw\": 843167, \"acRate\": \"67.7%\"}",
|
||||
"stats": "{\"totalAccepted\": \"571.4K\", \"totalSubmission\": \"843.4K\", \"totalAcceptedRaw\": 571350, \"totalSubmissionRaw\": 843446, \"acRate\": \"67.7%\"}",
|
||||
"hints": [],
|
||||
"solution": {
|
||||
"id": "75",
|
||||
|
Reference in New Issue
Block a user