mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-02 14:12:17 +08:00
update
This commit is contained in:
@@ -12,7 +12,7 @@
|
||||
"translatedContent": "<p>编写一个函数来查找字符串数组中的最长公共前缀。</p>\n\n<p>如果不存在公共前缀,返回空字符串 <code>\"\"</code>。</p>\n\n<p> </p>\n\n<p><strong>示例 1:</strong></p>\n\n<pre>\n<strong>输入:</strong>strs = [\"flower\",\"flow\",\"flight\"]\n<strong>输出:</strong>\"fl\"\n</pre>\n\n<p><strong>示例 2:</strong></p>\n\n<pre>\n<strong>输入:</strong>strs = [\"dog\",\"racecar\",\"car\"]\n<strong>输出:</strong>\"\"\n<strong>解释:</strong>输入不存在公共前缀。</pre>\n\n<p> </p>\n\n<p><strong>提示:</strong></p>\n\n<ul>\n\t<li><code>1 <= strs.length <= 200</code></li>\n\t<li><code>0 <= strs[i].length <= 200</code></li>\n\t<li><code>strs[i]</code> 仅由小写英文字母组成</li>\n</ul>\n",
|
||||
"isPaidOnly": false,
|
||||
"difficulty": "Easy",
|
||||
"likes": 2141,
|
||||
"likes": 2204,
|
||||
"dislikes": 0,
|
||||
"isLiked": null,
|
||||
"similarQuestions": "[]",
|
||||
@@ -137,7 +137,7 @@
|
||||
"__typename": "CodeSnippetNode"
|
||||
}
|
||||
],
|
||||
"stats": "{\"totalAccepted\": \"780.1K\", \"totalSubmission\": \"1.9M\", \"totalAcceptedRaw\": 780092, \"totalSubmissionRaw\": 1853565, \"acRate\": \"42.1%\"}",
|
||||
"stats": "{\"totalAccepted\": \"811.1K\", \"totalSubmission\": \"1.9M\", \"totalAcceptedRaw\": 811091, \"totalSubmissionRaw\": 1919526, \"acRate\": \"42.3%\"}",
|
||||
"hints": [],
|
||||
"solution": {
|
||||
"id": "110",
|
||||
|
Reference in New Issue
Block a user