mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-10 18:48:13 +08:00
55 lines
3.5 KiB
JSON
55 lines
3.5 KiB
JSON
{
|
|
"data": {
|
|
"question": {
|
|
"questionId": "3365",
|
|
"questionFrontendId": "100260",
|
|
"categoryTitle": "Database",
|
|
"boundTopicId": 2653967,
|
|
"title": "Find All Unique Email Domains",
|
|
"titleSlug": "find-all-unique-email-domains",
|
|
"content": null,
|
|
"translatedTitle": null,
|
|
"translatedContent": null,
|
|
"isPaidOnly": true,
|
|
"difficulty": "Easy",
|
|
"likes": 1,
|
|
"dislikes": 0,
|
|
"isLiked": null,
|
|
"similarQuestions": "[]",
|
|
"contributors": [],
|
|
"langToValidPlayground": null,
|
|
"topicTags": [],
|
|
"companyTagStats": null,
|
|
"codeSnippets": null,
|
|
"stats": "{\"totalAccepted\": \"40\", \"totalSubmission\": \"60\", \"totalAcceptedRaw\": 40, \"totalSubmissionRaw\": 60, \"acRate\": \"66.7%\"}",
|
|
"hints": [],
|
|
"solution": null,
|
|
"status": null,
|
|
"sampleTestCase": "{\"headers\":{\"Emails\":[\"id\",\"email\"]},\"rows\":{\"Emails\":[[336,\"hwkiy@test.edu\"],[489,\"adcmaf@outlook.com\"],[449,\"vrzmwyum@yahoo.com\"],[95,\"tof@test.edu\"],[320,\"jxhbagkpm@example.org\"],[411,\"zxcf@outlook.com\"]]}}",
|
|
"metaData": "{\"mysql\":[\"Create table If Not Exists Emails (id int, email varchar(255))\"],\"mssql\":[\"Create table Emails (id int, email varchar(255))\"],\"oraclesql\":[\"Create table Emails (id int, email varchar(255))\"],\"database\":true,\"name\":\"find_unique_email_domains\",\"postgresql\":[\"CREATE TABLE Emails (\\n id INT,\\n email VARCHAR(255)\\n);\"],\"pythondata\":[\"Emails = pd.DataFrame([], columns=['id', 'email']).astype({'id':'Int64', 'email':'object'})\\n\"],\"database_schema\":{\"Emails\":{\"id\":\"INT\",\"email\":\"VARCHAR(255)\"}}}",
|
|
"judgerAvailable": true,
|
|
"judgeType": "large",
|
|
"mysqlSchemas": [
|
|
"Create table If Not Exists Emails (id int, email varchar(255))",
|
|
"Truncate table Emails",
|
|
"insert into Emails (id, email) values ('336', 'hwkiy@test.edu')",
|
|
"insert into Emails (id, email) values ('489', 'adcmaf@outlook.com')",
|
|
"insert into Emails (id, email) values ('449', 'vrzmwyum@yahoo.com')",
|
|
"insert into Emails (id, email) values ('95', 'tof@test.edu')",
|
|
"insert into Emails (id, email) values ('320', 'jxhbagkpm@example.org')",
|
|
"insert into Emails (id, email) values ('411', 'zxcf@outlook.com')"
|
|
],
|
|
"enableRunCode": true,
|
|
"envInfo": "{\"mysql\":[\"MySQL\",\"<p>\\u7248\\u672c\\uff1a<code>MySQL 8.0<\\/code><\\/p>\"],\"mssql\":[\"MS SQL Server\",\"<p>mssql server 2019.<\\/p>\"],\"oraclesql\":[\"Oracle\",\"<p>Oracle Sql 11.2.<\\/p>\"],\"pythondata\":[\"Pandas\",\"<p>Python 3.10 with Pandas 2.0.2 and NumPy 1.25.0<\\/p>\"],\"postgresql\":[\"PostgreSQL\",\"<p>PostgreSQL 16<\\/p>\"]}",
|
|
"book": null,
|
|
"isSubscribed": false,
|
|
"isDailyQuestion": false,
|
|
"dailyRecordStatus": null,
|
|
"editorType": "CKEDITOR",
|
|
"ugcQuestionId": null,
|
|
"style": "LEETCODE",
|
|
"exampleTestcases": "{\"headers\":{\"Emails\":[\"id\",\"email\"]},\"rows\":{\"Emails\":[[336,\"hwkiy@test.edu\"],[489,\"adcmaf@outlook.com\"],[449,\"vrzmwyum@yahoo.com\"],[95,\"tof@test.edu\"],[320,\"jxhbagkpm@example.org\"],[411,\"zxcf@outlook.com\"]]}}",
|
|
"__typename": "QuestionNode"
|
|
}
|
|
}
|
|
} |