1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-04 06:51:41 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
This commit is contained in:
2022-03-29 12:55:24 +08:00
parent 2b0511d272
commit b84ae535b7
3973 changed files with 51044 additions and 105065 deletions

View File

@@ -0,0 +1,57 @@
{
"data": {
"question": {
"questionId": "614",
"questionFrontendId": "614",
"boundTopicId": null,
"title": "Second Degree Follower",
"titleSlug": "second-degree-follower",
"content": null,
"translatedTitle": null,
"translatedContent": null,
"isPaidOnly": true,
"difficulty": "Medium",
"likes": 117,
"dislikes": 693,
"isLiked": null,
"similarQuestions": "[]",
"exampleTestcases": "{\"headers\":{\"Follow\":[\"followee\",\"follower\"]},\"rows\":{\"Follow\":[[\"Alice\", \"Bob\"], [\"Bob\", \"Cena\"], [\"Bob\", \"Donald\"], [\"Donald\", \"Edward\"]]}}",
"categoryTitle": "Database",
"contributors": [],
"topicTags": [
{
"name": "Database",
"slug": "database",
"translatedName": null,
"__typename": "TopicTagNode"
}
],
"companyTagStats": null,
"codeSnippets": null,
"stats": "{\"totalAccepted\": \"38.6K\", \"totalSubmission\": \"109.3K\", \"totalAcceptedRaw\": 38586, \"totalSubmissionRaw\": 109268, \"acRate\": \"35.3%\"}",
"hints": [],
"solution": null,
"status": null,
"sampleTestCase": "{\"headers\":{\"Follow\":[\"followee\",\"follower\"]},\"rows\":{\"Follow\":[[\"Alice\", \"Bob\"], [\"Bob\", \"Cena\"], [\"Bob\", \"Donald\"], [\"Donald\", \"Edward\"]]}}",
"metaData": "{\n \"mysql\": [\n \"Create table If Not Exists Follow (followee varchar(255), follower varchar(255))\"\n ],\n \"mssql\": [\n \"Create table Follow (followee varchar(255), follower varchar(255))\"\n ],\n \"oraclesql\": [\n \"Create table Follow (followee varchar(255), follower varchar(255))\"\n ],\n \"database\": true\n}",
"judgerAvailable": true,
"judgeType": "large",
"mysqlSchemas": [
"Create table If Not Exists Follow (followee varchar(255), follower varchar(255))",
"Truncate table Follow",
"insert into Follow (followee, follower) values ('Alice', 'Bob')",
"insert into Follow (followee, follower) values ('Bob', 'Cena')",
"insert into Follow (followee, follower) values ('Bob', 'Donald')",
"insert into Follow (followee, follower) values ('Donald', 'Edward')"
],
"enableRunCode": true,
"enableTestMode": false,
"enableDebugger": false,
"envInfo": "{\"mysql\": [\"MySQL\", \"<p><code>MySQL 8.0</code>.</p>\"], \"mssql\": [\"MS SQL Server\", \"<p><code>mssql server 2019</code>.</p>\"], \"oraclesql\": [\"Oracle\", \"<p><code>Oracle Sql 11.2</code>.</p>\"]}",
"libraryUrl": null,
"adminUrl": null,
"challengeQuestion": null,
"__typename": "QuestionNode"
}
}
}