1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-07 00:11:41 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee

存量题库数据更新

This commit is contained in:
2023-12-09 18:42:21 +08:00
parent a788808cd7
commit c198538f10
10843 changed files with 288489 additions and 248355 deletions

View File

@@ -11,8 +11,8 @@
"translatedContent": null,
"isPaidOnly": true,
"difficulty": "Easy",
"likes": 54,
"dislikes": 8,
"likes": 125,
"dislikes": 13,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Customer Who Visited but Did Not Make Any Transactions\", \"titleSlug\": \"customer-who-visited-but-did-not-make-any-transactions\", \"difficulty\": \"Easy\", \"translatedTitle\": null}]",
"exampleTestcases": "{\"headers\": {\"Customer\": [\"customer_id\", \"customer_name\"], \"Orders\": [\"order_id\", \"sale_date\", \"order_cost\", \"customer_id\", \"seller_id\"], \"Seller\": [\"seller_id\", \"seller_name\"]}, \"rows\": {\"Customer\": [[101, \"Alice\"], [102, \"Bob\"], [103, \"Charlie\"]], \"Orders\": [[1, \"2020-03-01\", 1500, 101, 1], [2, \"2020-05-25\", 2400, 102, 2], [3, \"2019-05-25\", 800, 101, 3], [4, \"2020-09-13\", 1000, 103, 2], [5, \"2019-02-11\", 700, 101, 2]], \"Seller\": [[1, \"Daniel\"], [2, \"Elizabeth\"], [3, \"Frank\"]]}}",
@@ -28,12 +28,19 @@
],
"companyTagStats": null,
"codeSnippets": null,
"stats": "{\"totalAccepted\": \"13.3K\", \"totalSubmission\": \"24.3K\", \"totalAcceptedRaw\": 13269, \"totalSubmissionRaw\": 24345, \"acRate\": \"54.5%\"}",
"stats": "{\"totalAccepted\": \"29.5K\", \"totalSubmission\": \"54.4K\", \"totalAcceptedRaw\": 29456, \"totalSubmissionRaw\": 54446, \"acRate\": \"54.1%\"}",
"hints": [],
"solution": null,
"solution": {
"id": "2031",
"canSeeDetail": false,
"paidOnly": true,
"hasVideoSolution": false,
"paidOnlyVideo": true,
"__typename": "ArticleNode"
},
"status": null,
"sampleTestCase": "{\"headers\": {\"Customer\": [\"customer_id\", \"customer_name\"], \"Orders\": [\"order_id\", \"sale_date\", \"order_cost\", \"customer_id\", \"seller_id\"], \"Seller\": [\"seller_id\", \"seller_name\"]}, \"rows\": {\"Customer\": [[101, \"Alice\"], [102, \"Bob\"], [103, \"Charlie\"]], \"Orders\": [[1, \"2020-03-01\", 1500, 101, 1], [2, \"2020-05-25\", 2400, 102, 2], [3, \"2019-05-25\", 800, 101, 3], [4, \"2020-09-13\", 1000, 103, 2], [5, \"2019-02-11\", 700, 101, 2]], \"Seller\": [[1, \"Daniel\"], [2, \"Elizabeth\"], [3, \"Frank\"]]}}",
"metaData": "{\n \"mysql\": [\n \"Create table If Not Exists Customer (customer_id int, customer_name varchar(20))\",\n \"Create table If Not Exists Orders (order_id int, sale_date date, order_cost int, customer_id int, seller_id int)\\n\",\n \"Create table If Not Exists Seller (seller_id int, seller_name varchar(20))\\n\"\n ],\n \"mssql\": [\n \"Create table Customer (customer_id int, customer_name varchar(20))\\n\",\n \"Create table Orders (order_id int, sale_date date, order_cost int, customer_id int, seller_id int)\\n\",\n \"Create table Seller (seller_id int, seller_name varchar(20))\\n\"\n ],\n \"oraclesql\": [\n \"Create table Customer (customer_id int, customer_name varchar(20))\\n\",\n \"Create table Orders (order_id int, sale_date date, order_cost int, customer_id int, seller_id int)\\n\",\n \"Create table Seller (seller_id int, seller_name varchar(20))\\n\",\n \"ALTER SESSION SET nls_date_format='YYYY-MM-DD'\\n\"\n ],\n \"database\": true,\n \"manual\": false\n}",
"metaData": "{\"mysql\": [\"Create table If Not Exists Customer (customer_id int, customer_name varchar(20))\", \"Create table If Not Exists Orders (order_id int, sale_date date, order_cost int, customer_id int, seller_id int)\\n\", \"Create table If Not Exists Seller (seller_id int, seller_name varchar(20))\\n\"], \"mssql\": [\"Create table Customer (customer_id int, customer_name varchar(20))\\n\", \"Create table Orders (order_id int, sale_date date, order_cost int, customer_id int, seller_id int)\\n\", \"Create table Seller (seller_id int, seller_name varchar(20))\\n\"], \"oraclesql\": [\"Create table Customer (customer_id int, customer_name varchar(20))\\n\", \"Create table Orders (order_id int, sale_date date, order_cost int, customer_id int, seller_id int)\\n\", \"Create table Seller (seller_id int, seller_name varchar(20))\\n\", \"ALTER SESSION SET nls_date_format='YYYY-MM-DD'\\n\"], \"database\": true, \"manual\": false, \"name\": \"sellers_with_no_sales\", \"pythondata\": [\"Customer = pd.DataFrame([], columns=['customer_id', 'customer_name']).astype({'customer_id':'Int64', 'customer_name':'object'})\", \"Orders = pd.DataFrame([], columns=['order_id', 'sale_date', 'order_cost', 'customer_id', 'seller_id']).astype({'order_id':'Int64', 'sale_date':'datetime64[ns]', 'order_cost':'Int64', 'customer_id':'Int64', 'seller_id':'Int64'})\", \"Seller = pd.DataFrame([], columns=['seller_id', 'seller_name']).astype({'seller_id':'Int64', 'seller_name':'object'})\"], \"postgresql\": [\"\\nCreate table If Not Exists Customer (customer_id int, customer_name varchar(20))\\n\", \"Create table If Not Exists Orders (order_id int, sale_date date, order_cost int, customer_id int, seller_id int)\", \"Create table If Not Exists Seller (seller_id int, seller_name varchar(20))\\n\"], \"database_schema\": {\"Customer\": {\"customer_id\": \"INT\", \"customer_name\": \"VARCHAR(20)\"}, \"Orders\": {\"order_id\": \"INT\", \"sale_date\": \"DATE\", \"order_cost\": \"INT\", \"customer_id\": \"INT\", \"seller_id\": \"INT\"}, \"Seller\": {\"seller_id\": \"INT\", \"seller_name\": \"VARCHAR(20)\"}}}",
"judgerAvailable": true,
"judgeType": "large",
"mysqlSchemas": [
@@ -58,7 +65,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,