1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-11 02:58:13 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/leetcode/originData/[no content]the-number-of-rich-customers.json

58 lines
3.0 KiB
JSON
Raw Normal View History

2022-03-27 18:27:43 +08:00
{
"data": {
"question": {
"questionId": "2223",
"questionFrontendId": "2082",
"boundTopicId": null,
"title": "The Number of Rich Customers",
"titleSlug": "the-number-of-rich-customers",
"content": null,
"translatedTitle": null,
"translatedContent": null,
"isPaidOnly": true,
"difficulty": "Easy",
2022-05-02 23:44:12 +08:00
"likes": 14,
"dislikes": 11,
2022-03-27 18:27:43 +08:00
"isLiked": null,
"similarQuestions": "[{\"title\": \"The Winner University\", \"titleSlug\": \"the-winner-university\", \"difficulty\": \"Easy\", \"translatedTitle\": null}]",
"exampleTestcases": null,
"categoryTitle": "Database",
"contributors": [],
"topicTags": [
{
"name": "Database",
"slug": "database",
"translatedName": null,
"__typename": "TopicTagNode"
}
],
"companyTagStats": null,
"codeSnippets": null,
2022-05-02 23:44:12 +08:00
"stats": "{\"totalAccepted\": \"3.9K\", \"totalSubmission\": \"4.8K\", \"totalAcceptedRaw\": 3865, \"totalSubmissionRaw\": 4769, \"acRate\": \"81.0%\"}",
2022-03-27 18:27:43 +08:00
"hints": [],
"solution": null,
"status": null,
"sampleTestCase": "{\"headers\":{\"Store\":[\"bill_id\",\"customer_id\",\"amount\"]},\"rows\":{\"Store\":[[6,1,549],[8,1,834],[4,2,394],[11,3,657],[13,3,257]]}}",
"metaData": "{\n \"mysql\": [\n \"Create table If Not Exists Store (bill_id int, customer_id int, amount int)\"\n ],\n \"mssql\": [\n \"Create table Store (bill_id int, customer_id int, amount int)\"\n ],\n \"oraclesql\": [\n \"Create table Store (bill_id int, customer_id int, amount int)\"\n ],\n \"database\": true\n}",
"judgerAvailable": true,
"judgeType": "large",
"mysqlSchemas": [
"Create table If Not Exists Store (bill_id int, customer_id int, amount int)",
"Truncate table Store",
"insert into Store (bill_id, customer_id, amount) values ('6', '1', '549')",
"insert into Store (bill_id, customer_id, amount) values ('8', '1', '834')",
"insert into Store (bill_id, customer_id, amount) values ('4', '2', '394')",
"insert into Store (bill_id, customer_id, amount) values ('11', '3', '657')",
"insert into Store (bill_id, customer_id, amount) values ('13', '3', '257')"
],
"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>\"]}",
"libraryUrl": null,
"adminUrl": null,
"challengeQuestion": null,
"__typename": "QuestionNode"
}
}
}