mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-08 08:51:42 +08:00
存量题库数据更新
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
"title": "Calculate the Influence of Each Salesperson",
|
||||
"titleSlug": "calculate-the-influence-of-each-salesperson",
|
||||
"content": null,
|
||||
"translatedTitle": " Calculate the Influence of Each Salesperson",
|
||||
"translatedTitle": "计算每个销售人员的影响力",
|
||||
"translatedContent": null,
|
||||
"isPaidOnly": true,
|
||||
"difficulty": "Medium",
|
||||
@@ -28,12 +28,12 @@
|
||||
],
|
||||
"companyTagStats": null,
|
||||
"codeSnippets": null,
|
||||
"stats": "{\"totalAccepted\": \"63\", \"totalSubmission\": \"72\", \"totalAcceptedRaw\": 63, \"totalSubmissionRaw\": 72, \"acRate\": \"87.5%\"}",
|
||||
"stats": "{\"totalAccepted\": \"1K\", \"totalSubmission\": \"1.3K\", \"totalAcceptedRaw\": 1032, \"totalSubmissionRaw\": 1340, \"acRate\": \"77.0%\"}",
|
||||
"hints": [],
|
||||
"solution": null,
|
||||
"status": null,
|
||||
"sampleTestCase": "{\"headers\":{\"Salesperson\":[\"salesperson_id\",\"name\"],\"Customer\":[\"customer_id\",\"salesperson_id\"],\"Sales\":[\"sale_id\",\"customer_id\",\"price\"]},\"rows\":{\"Salesperson\":[[1,\"Alice\"],[2,\"Bob\"],[3,\"Jerry\"]],\"Customer\":[[1,1],[2,1],[3,2]],\"Sales\":[[1,2,892],[2,1,354],[3,3,988],[4,3,856]]}}",
|
||||
"metaData": "{\n \"mysql\": [\n \"Create table If Not Exists Salesperson (salesperson_id int, name varchar(30))\",\n \"Create table If Not Exists Customer (customer_id int, salesperson_id int)\",\n \"Create table If Not Exists Sales (sale_id int, customer_id int, price int)\"\n ],\n \"mssql\": [\n \"Create table Salesperson (salesperson_id int, name varchar(30))\",\n \"Create table Customer (customer_id int, salesperson_id int)\",\n \"Create table Sales (sale_id int, customer_id int, price int)\"\n ],\n \"oraclesql\": [\n \"Create table Salesperson (salesperson_id int, name varchar(30))\",\n \"Create table Customer (customer_id int, salesperson_id int)\",\n \"Create table Sales (sale_id int, customer_id int, price int)\"\n ],\n \"database\": true\n}",
|
||||
"metaData": "{\"mysql\":[\"Create table If Not Exists Salesperson (salesperson_id int, name varchar(30))\",\"Create table If Not Exists Customer (customer_id int, salesperson_id int)\",\"Create table If Not Exists Sales (sale_id int, customer_id int, price int)\"],\"mssql\":[\"Create table Salesperson (salesperson_id int, name varchar(30))\",\"Create table Customer (customer_id int, salesperson_id int)\",\"Create table Sales (sale_id int, customer_id int, price int)\"],\"oraclesql\":[\"Create table Salesperson (salesperson_id int, name varchar(30))\",\"Create table Customer (customer_id int, salesperson_id int)\",\"Create table Sales (sale_id int, customer_id int, price int)\"],\"database\":true,\"name\":\"calculate_influence\",\"pythondata\":[\"Salesperson = pd.DataFrame([], columns=['salesperson_id', 'name']).astype({'salesperson_id':'Int64', 'name':'object'})\",\"Customer = pd.DataFrame([], columns=['customer_id', 'salesperson_id']).astype({'customer_id':'Int64', 'salesperson_id':'Int64'})\",\"Sales = pd.DataFrame([], columns=['sale_id', 'customer_id', 'price']).astype({'sale_id':'Int64', 'customer_id':'Int64', 'price':'Int64'})\"],\"postgresql\":[\"Create table If Not Exists Salesperson (salesperson_id int, name varchar(30))\",\"Create table If Not Exists Customer (customer_id int, salesperson_id int)\",\"Create table If Not Exists Sales (sale_id int, customer_id int, price int)\"],\"database_schema\":{\"Salesperson\":{\"salesperson_id\":\"INT\",\"name\":\"VARCHAR(30)\"},\"Customer\":{\"customer_id\":\"INT\",\"salesperson_id\":\"INT\"},\"Sales\":{\"sale_id\":\"INT\",\"customer_id\":\"INT\",\"price\":\"INT\"}}}",
|
||||
"judgerAvailable": true,
|
||||
"judgeType": "large",
|
||||
"mysqlSchemas": [
|
||||
@@ -55,7 +55,7 @@
|
||||
"insert into Sales (sale_id, customer_id, price) values ('4', '3', '856')"
|
||||
],
|
||||
"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>\"]}",
|
||||
"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,
|
||||
|
Reference in New Issue
Block a user