mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-05 15:31:43 +08:00
存量题库数据更新
This commit is contained in:
@@ -11,8 +11,8 @@
|
||||
"translatedContent": null,
|
||||
"isPaidOnly": true,
|
||||
"difficulty": "Easy",
|
||||
"likes": 131,
|
||||
"dislikes": 7,
|
||||
"likes": 172,
|
||||
"dislikes": 9,
|
||||
"isLiked": null,
|
||||
"similarQuestions": "[]",
|
||||
"exampleTestcases": "{\"headers\":{\"Departments\":[\"id\",\"name\"],\"Students\":[\"id\",\"name\",\"department_id\"]},\"rows\":{\"Departments\":[[1,\"Electrical Engineering\"],[7,\"Computer Engineering\"],[13,\"Bussiness Administration\"]],\"Students\":[[23,\"Alice\",1],[1,\"Bob\",7],[5,\"Jennifer\",13],[2,\"John\",14],[4,\"Jasmine\",77],[3,\"Steve\",74],[6,\"Luis\",1],[8,\"Jonathan\",7],[7,\"Daiana\",33],[11,\"Madelynn\",1]]}}",
|
||||
@@ -28,12 +28,12 @@
|
||||
],
|
||||
"companyTagStats": null,
|
||||
"codeSnippets": null,
|
||||
"stats": "{\"totalAccepted\": \"39.3K\", \"totalSubmission\": \"43.4K\", \"totalAcceptedRaw\": 39307, \"totalSubmissionRaw\": 43440, \"acRate\": \"90.5%\"}",
|
||||
"stats": "{\"totalAccepted\": \"51.9K\", \"totalSubmission\": \"58K\", \"totalAcceptedRaw\": 51934, \"totalSubmissionRaw\": 57968, \"acRate\": \"89.6%\"}",
|
||||
"hints": [],
|
||||
"solution": null,
|
||||
"status": null,
|
||||
"sampleTestCase": "{\"headers\":{\"Departments\":[\"id\",\"name\"],\"Students\":[\"id\",\"name\",\"department_id\"]},\"rows\":{\"Departments\":[[1,\"Electrical Engineering\"],[7,\"Computer Engineering\"],[13,\"Bussiness Administration\"]],\"Students\":[[23,\"Alice\",1],[1,\"Bob\",7],[5,\"Jennifer\",13],[2,\"John\",14],[4,\"Jasmine\",77],[3,\"Steve\",74],[6,\"Luis\",1],[8,\"Jonathan\",7],[7,\"Daiana\",33],[11,\"Madelynn\",1]]}}",
|
||||
"metaData": "{\n \"mysql\": [\n \"Create table If Not Exists Departments (id int, name varchar(30))\",\n \"Create table If Not Exists Students (id int, name varchar(30), department_id int)\"\n ],\n \"mssql\": [\n \"Create table Departments (id int, name varchar(30))\",\n \"Create table Students (id int, name varchar(30), department_id int)\"\n ],\n \"oraclesql\": [\n \"Create table Departments (id int, name varchar(30))\",\n \"Create table Students (id int, name varchar(30), department_id int)\"\n ],\n \"database\": true\n}",
|
||||
"metaData": "{\"mysql\": [\"Create table If Not Exists Departments (id int, name varchar(30))\", \"Create table If Not Exists Students (id int, name varchar(30), department_id int)\"], \"mssql\": [\"Create table Departments (id int, name varchar(30))\", \"Create table Students (id int, name varchar(30), department_id int)\"], \"oraclesql\": [\"Create table Departments (id int, name varchar(30))\", \"Create table Students (id int, name varchar(30), department_id int)\"], \"database\": true, \"name\": \"find_students\", \"pythondata\": [\"Departments = pd.DataFrame([], columns=['id', 'name']).astype({'id':'Int64', 'name':'object'})\", \"Students = pd.DataFrame([], columns=['id', 'name', 'department_id']).astype({'id':'Int64', 'name':'object', 'department_id':'Int64'})\"], \"postgresql\": [\"\\nCreate table If Not Exists Departments (id int, name varchar(30))\\n\", \"Create table If Not Exists Students (id int, name varchar(30), department_id int)\"], \"database_schema\": {\"Departments\": {\"id\": \"INT\", \"name\": \"VARCHAR(30)\"}, \"Students\": {\"id\": \"INT\", \"name\": \"VARCHAR(30)\", \"department_id\": \"INT\"}}}",
|
||||
"judgerAvailable": true,
|
||||
"judgeType": "large",
|
||||
"mysqlSchemas": [
|
||||
@@ -58,7 +58,7 @@
|
||||
"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>\"]}",
|
||||
"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>\"], \"pythondata\": [\"Pandas\", \"<p>Python 3.10 with Pandas 2.0.2 and NumPy 1.25.0</p>\"], \"postgresql\": [\"PostgreSQL\", \"<p>PostgreSQL 16</p>\"]}",
|
||||
"libraryUrl": null,
|
||||
"adminUrl": null,
|
||||
"challengeQuestion": null,
|
||||
|
Reference in New Issue
Block a user