mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-10-22 05:26:46 +08:00
update
This commit is contained in:
@@ -12,7 +12,7 @@
|
||||
"translatedContent": "<p>编写一个 SQL 查询,查找 <code>Person</code> 表中所有重复的电子邮箱。</p>\n\n<p><strong>示例:</strong></p>\n\n<pre>+----+---------+\n| Id | Email |\n+----+---------+\n| 1 | a@b.com |\n| 2 | c@d.com |\n| 3 | a@b.com |\n+----+---------+\n</pre>\n\n<p>根据以上输入,你的查询应返回以下结果:</p>\n\n<pre>+---------+\n| Email |\n+---------+\n| a@b.com |\n+---------+\n</pre>\n\n<p><strong>说明:</strong>所有电子邮箱都是小写字母。</p>\n",
|
||||
"isPaidOnly": false,
|
||||
"difficulty": "Easy",
|
||||
"likes": 346,
|
||||
"likes": 354,
|
||||
"dislikes": 0,
|
||||
"isLiked": null,
|
||||
"similarQuestions": "[]",
|
||||
@@ -47,7 +47,7 @@
|
||||
"__typename": "CodeSnippetNode"
|
||||
}
|
||||
],
|
||||
"stats": "{\"totalAccepted\": \"215.5K\", \"totalSubmission\": \"271.9K\", \"totalAcceptedRaw\": 215541, \"totalSubmissionRaw\": 271857, \"acRate\": \"79.3%\"}",
|
||||
"stats": "{\"totalAccepted\": \"222.2K\", \"totalSubmission\": \"280.2K\", \"totalAcceptedRaw\": 222192, \"totalSubmissionRaw\": 280173, \"acRate\": \"79.3%\"}",
|
||||
"hints": [],
|
||||
"solution": {
|
||||
"id": "103",
|
||||
@@ -55,7 +55,7 @@
|
||||
"__typename": "ArticleNode"
|
||||
},
|
||||
"status": null,
|
||||
"sampleTestCase": "{\"headers\": {\"Person\": [\"id\", \"email\"]}, \"rows\": {\"Person\": [[1, \"a@b.com\"], [2, \"c@d.com\"], [3, \"a@b.com\"]]}}",
|
||||
"sampleTestCase": "{\"headers\": {\"Person\": [\"Id\", \"Email\"]}, \"rows\": {\"Person\": [[1, \"a@b.com\"], [2, \"c@d.com\"], [3, \"a@b.com\"]]}}",
|
||||
"metaData": "{\n \"mysql\": [\n \"Create table If Not Exists Person (id int, email varchar(255))\"\n ],\n \"mssql\": [\n \"Create table Person (id int, email varchar(255))\"\n ],\n \"oraclesql\": [\n \"Create table Person (id int, email varchar(255))\"\n ],\n \"database\": true\n}",
|
||||
"judgerAvailable": true,
|
||||
"judgeType": "large",
|
||||
|
Reference in New Issue
Block a user