mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-07 00:11:41 +08:00
存量题库数据更新
This commit is contained in:
@@ -12,10 +12,10 @@
|
||||
"translatedContent": null,
|
||||
"isPaidOnly": true,
|
||||
"difficulty": "Hard",
|
||||
"likes": 88,
|
||||
"likes": 123,
|
||||
"dislikes": 0,
|
||||
"isLiked": null,
|
||||
"similarQuestions": "[{\"title\": \"Find Median Given Frequency of Numbers\", \"titleSlug\": \"find-median-given-frequency-of-numbers\", \"difficulty\": \"Hard\", \"translatedTitle\": \"\\u7ed9\\u5b9a\\u6570\\u5b57\\u7684\\u9891\\u7387\\u67e5\\u8be2\\u4e2d\\u4f4d\\u6570\"}]",
|
||||
"similarQuestions": "[{\"title\": \"Find Median Given Frequency of Numbers\", \"titleSlug\": \"find-median-given-frequency-of-numbers\", \"difficulty\": \"Hard\", \"translatedTitle\": \"\\u7ed9\\u5b9a\\u6570\\u5b57\\u7684\\u9891\\u7387\\u67e5\\u8be2\\u4e2d\\u4f4d\\u6570\", \"isPaidOnly\": true}]",
|
||||
"contributors": [],
|
||||
"langToValidPlayground": null,
|
||||
"topicTags": [
|
||||
@@ -28,7 +28,7 @@
|
||||
],
|
||||
"companyTagStats": null,
|
||||
"codeSnippets": null,
|
||||
"stats": "{\"totalAccepted\": \"13.6K\", \"totalSubmission\": \"24.2K\", \"totalAcceptedRaw\": 13647, \"totalSubmissionRaw\": 24180, \"acRate\": \"56.4%\"}",
|
||||
"stats": "{\"totalAccepted\": \"21.3K\", \"totalSubmission\": \"37.4K\", \"totalAcceptedRaw\": 21329, \"totalSubmissionRaw\": 37375, \"acRate\": \"57.1%\"}",
|
||||
"hints": [
|
||||
"Still remember how to select the sum which group by one column?",
|
||||
"Try to think about how to get the median from a sorted list.",
|
||||
@@ -36,8 +36,8 @@
|
||||
],
|
||||
"solution": null,
|
||||
"status": null,
|
||||
"sampleTestCase": "{\"headers\": {\"Employee\": [\"Id\", \"Company\", \"Salary\"]}, \"rows\": {\"Employee\": [[1, \"A\", 2341],[2, \"A\", 341],[3, \"A\", 15],[4, \"A\", 15314],[5, \"A\", 451],[6, \"A\", 513],[7, \"B\", 15],[8, \"B\", 13],[9, \"B\", 1154],[10, \"B\", 1345],[11, \"B\", 1221],[12, \"B\", 234],[13, \"C\", 2345],[14, \"C\", 2645],[15, \"C\", 2645],[16, \"C\", 2652],[17, \"C\", 65]]}}",
|
||||
"metaData": "{\n \"mysql\": [\n \"Create table If Not Exists Employee (id int, company varchar(255), salary int)\"\n ],\n \"mssql\": [\n \"Create table Employee (id int, company varchar(255), salary int)\"\n ],\n \"oraclesql\": [\n \"Create table Employee (id int, company varchar(255), salary int)\"\n ],\n \"database\": true\n}",
|
||||
"sampleTestCase": "{\"headers\": {\"Employee\": [\"id\", \"company\", \"salary\"]}, \"rows\": {\"Employee\": [[1, \"A\", 2341],[2, \"A\", 341],[3, \"A\", 15],[4, \"A\", 15314],[5, \"A\", 451],[6, \"A\", 513],[7, \"B\", 15],[8, \"B\", 13],[9, \"B\", 1154],[10, \"B\", 1345],[11, \"B\", 1221],[12, \"B\", 234],[13, \"C\", 2345],[14, \"C\", 2645],[15, \"C\", 2645],[16, \"C\", 2652],[17, \"C\", 65]]}}",
|
||||
"metaData": "{\"mysql\":[\"Create table If Not Exists Employee (id int, company varchar(255), salary int)\"],\"mssql\":[\"Create table Employee (id int, company varchar(255), salary int)\"],\"oraclesql\":[\"Create table Employee (id int, company varchar(255), salary int)\"],\"database\":true,\"name\":\"median_employee_salary\",\"pythondata\":[\"Employee = pd.DataFrame([], columns=['id', 'company', 'salary']).astype({'id':'Int64', 'company':'object', 'salary':'Int64'})\"],\"postgresql\":[\"\\nCreate table If Not Exists Employee (id int, company varchar(255), salary int)\"],\"database_schema\":{\"Employee\":{\"id\":\"INT\",\"company\":\"VARCHAR(255)\",\"salary\":\"INT\"}}}",
|
||||
"judgerAvailable": true,
|
||||
"judgeType": "large",
|
||||
"mysqlSchemas": [
|
||||
@@ -62,7 +62,7 @@
|
||||
"insert into Employee (id, company, salary) values ('17', 'C', '65')"
|
||||
],
|
||||
"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