mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-08 00:41:42 +08:00
存量题库数据更新
This commit is contained in:
@@ -8,11 +8,11 @@
|
||||
"title": "The Number of Passengers in Each Bus II",
|
||||
"titleSlug": "the-number-of-passengers-in-each-bus-ii",
|
||||
"content": null,
|
||||
"translatedTitle": null,
|
||||
"translatedTitle": "每辆车的乘客人数 II",
|
||||
"translatedContent": null,
|
||||
"isPaidOnly": true,
|
||||
"difficulty": "Hard",
|
||||
"likes": 2,
|
||||
"likes": 14,
|
||||
"dislikes": 0,
|
||||
"isLiked": null,
|
||||
"similarQuestions": "[]",
|
||||
@@ -28,12 +28,12 @@
|
||||
],
|
||||
"companyTagStats": null,
|
||||
"codeSnippets": null,
|
||||
"stats": "{\"totalAccepted\": \"161\", \"totalSubmission\": \"391\", \"totalAcceptedRaw\": 161, \"totalSubmissionRaw\": 391, \"acRate\": \"41.2%\"}",
|
||||
"stats": "{\"totalAccepted\": \"799\", \"totalSubmission\": \"1.8K\", \"totalAcceptedRaw\": 799, \"totalSubmissionRaw\": 1828, \"acRate\": \"43.7%\"}",
|
||||
"hints": [],
|
||||
"solution": null,
|
||||
"status": null,
|
||||
"sampleTestCase": "{\"headers\":{\"Buses\":[\"bus_id\",\"arrival_time\",\"capacity\"],\"Passengers\":[\"passenger_id\",\"arrival_time\"]},\"rows\":{\"Buses\":[[1,2,1],[2,4,10],[3,7,2]],\"Passengers\":[[11,1],[12,1],[13,5],[14,6],[15,7]]}}",
|
||||
"metaData": "{\n \"mysql\": [\n \"Create table If Not Exists Buses (bus_id int, arrival_time int, capacity int)\",\n \"Create table If Not Exists Passengers (passenger_id int, arrival_time int)\"\n ],\n \"mssql\": [\n \"Create table Buses (bus_id int, arrival_time int, capacity int)\",\n \"Create table Passengers (passenger_id int, arrival_time int)\"\n ],\n \"oraclesql\": [\n \"Create table Buses (bus_id int, arrival_time int, capacity int)\",\n \"Create table Passengers (passenger_id int, arrival_time int)\"\n ],\n \"database\": true\n}",
|
||||
"metaData": "{\"mysql\":[\"Create table If Not Exists Buses (bus_id int, arrival_time int, capacity int)\",\"Create table If Not Exists Passengers (passenger_id int, arrival_time int)\"],\"mssql\":[\"Create table Buses (bus_id int, arrival_time int, capacity int)\",\"Create table Passengers (passenger_id int, arrival_time int)\"],\"oraclesql\":[\"Create table Buses (bus_id int, arrival_time int, capacity int)\",\"Create table Passengers (passenger_id int, arrival_time int)\"],\"database\":true,\"name\":\"number_of_passengers\",\"pythondata\":[\"Buses = pd.DataFrame([], columns=['bus_id', 'arrival_time', 'capacity']).astype({'bus_id':'Int64', 'arrival_time':'Int64', 'capacity':'Int64'})\",\"Passengers = pd.DataFrame([], columns=['passenger_id', 'arrival_time']).astype({'passenger_id':'Int64', 'arrival_time':'Int64'})\"],\"postgresql\":[\"Create table If Not Exists Buses (bus_id int, arrival_time int, capacity int)\",\"Create table If Not Exists Passengers (passenger_id int, arrival_time int)\"],\"database_schema\":{\"Buses\":{\"bus_id\":\"INT\",\"arrival_time\":\"INT\",\"capacity\":\"INT\"},\"Passengers\":{\"passenger_id\":\"INT\",\"arrival_time\":\"INT\"}}}",
|
||||
"judgerAvailable": true,
|
||||
"judgeType": "large",
|
||||
"mysqlSchemas": [
|
||||
@@ -51,7 +51,7 @@
|
||||
"insert into Passengers (passenger_id, arrival_time) values ('15', '7')"
|
||||
],
|
||||
"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