mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-10 18:48:13 +08:00
74 lines
5.9 KiB
JSON
74 lines
5.9 KiB
JSON
{
|
|
"data": {
|
|
"question": {
|
|
"questionId": "2063",
|
|
"questionFrontendId": "1917",
|
|
"categoryTitle": "Database",
|
|
"boundTopicId": 849603,
|
|
"title": "Leetcodify Friends Recommendations",
|
|
"titleSlug": "leetcodify-friends-recommendations",
|
|
"content": null,
|
|
"translatedTitle": "Leetcodify 好友推荐",
|
|
"translatedContent": null,
|
|
"isPaidOnly": true,
|
|
"difficulty": "Hard",
|
|
"likes": 11,
|
|
"dislikes": 0,
|
|
"isLiked": null,
|
|
"similarQuestions": "[]",
|
|
"contributors": [],
|
|
"langToValidPlayground": null,
|
|
"topicTags": [
|
|
{
|
|
"name": "Database",
|
|
"slug": "database",
|
|
"translatedName": "数据库",
|
|
"__typename": "TopicTagNode"
|
|
}
|
|
],
|
|
"companyTagStats": null,
|
|
"codeSnippets": null,
|
|
"stats": "{\"totalAccepted\": \"2.4K\", \"totalSubmission\": \"8K\", \"totalAcceptedRaw\": 2405, \"totalSubmissionRaw\": 7950, \"acRate\": \"30.3%\"}",
|
|
"hints": [],
|
|
"solution": null,
|
|
"status": null,
|
|
"sampleTestCase": "{\"headers\":{\"Listens\":[\"user_id\",\"song_id\",\"day\"],\"Friendship\":[\"user1_id\",\"user2_id\"]},\"rows\":{\"Listens\":[[1,10,\"2021-03-15\"],[1,11,\"2021-03-15\"],[1,12,\"2021-03-15\"],[2,10,\"2021-03-15\"],[2,11,\"2021-03-15\"],[2,12,\"2021-03-15\"],[3,10,\"2021-03-15\"],[3,11,\"2021-03-15\"],[3,12,\"2021-03-15\"],[4,10,\"2021-03-15\"],[4,11,\"2021-03-15\"],[4,13,\"2021-03-15\"],[5,10,\"2021-03-16\"],[5,11,\"2021-03-16\"],[5,12,\"2021-03-16\"]],\"Friendship\":[[1,2]]}}",
|
|
"metaData": "{\"mysql\":[\"Create table If Not Exists Listens (user_id int, song_id int, day date)\",\"Create table If Not Exists Friendship (user1_id int, user2_id int)\"],\"mssql\":[\"Create table Listens (user_id int, song_id int, day date)\",\"Create table Friendship (user1_id int, user2_id int)\"],\"oraclesql\":[\"Create table Listens (user_id int, song_id int, day date)\",\"Create table Friendship (user1_id int, user2_id int)\",\"ALTER SESSION SET nls_date_format='YYYY-MM-DD'\"],\"database\":true,\"name\":\"recommend_friends\",\"pythondata\":[\"Listens = pd.DataFrame([], columns=['user_id', 'song_id', 'day']).astype({'user_id':'Int64', 'song_id':'Int64', 'day':'datetime64[ns]'})\",\"Friendship = pd.DataFrame([], columns=['user1_id', 'user2_id']).astype({'user1_id':'Int64', 'user2_id':'Int64'})\"],\"postgresql\":[\"Create table If Not Exists Listens (user_id int, song_id int, day date)\",\"Create table If Not Exists Friendship (user1_id int, user2_id int)\"],\"database_schema\":{\"Listens\":{\"user_id\":\"INT\",\"song_id\":\"INT\",\"day\":\"DATE\"},\"Friendship\":{\"user1_id\":\"INT\",\"user2_id\":\"INT\"}}}",
|
|
"judgerAvailable": true,
|
|
"judgeType": "large",
|
|
"mysqlSchemas": [
|
|
"Create table If Not Exists Listens (user_id int, song_id int, day date)",
|
|
"Create table If Not Exists Friendship (user1_id int, user2_id int)",
|
|
"Truncate table Listens",
|
|
"insert into Listens (user_id, song_id, day) values ('1', '10', '2021-03-15')",
|
|
"insert into Listens (user_id, song_id, day) values ('1', '11', '2021-03-15')",
|
|
"insert into Listens (user_id, song_id, day) values ('1', '12', '2021-03-15')",
|
|
"insert into Listens (user_id, song_id, day) values ('2', '10', '2021-03-15')",
|
|
"insert into Listens (user_id, song_id, day) values ('2', '11', '2021-03-15')",
|
|
"insert into Listens (user_id, song_id, day) values ('2', '12', '2021-03-15')",
|
|
"insert into Listens (user_id, song_id, day) values ('3', '10', '2021-03-15')",
|
|
"insert into Listens (user_id, song_id, day) values ('3', '11', '2021-03-15')",
|
|
"insert into Listens (user_id, song_id, day) values ('3', '12', '2021-03-15')",
|
|
"insert into Listens (user_id, song_id, day) values ('4', '10', '2021-03-15')",
|
|
"insert into Listens (user_id, song_id, day) values ('4', '11', '2021-03-15')",
|
|
"insert into Listens (user_id, song_id, day) values ('4', '13', '2021-03-15')",
|
|
"insert into Listens (user_id, song_id, day) values ('5', '10', '2021-03-16')",
|
|
"insert into Listens (user_id, song_id, day) values ('5', '11', '2021-03-16')",
|
|
"insert into Listens (user_id, song_id, day) values ('5', '12', '2021-03-16')",
|
|
"Truncate table Friendship",
|
|
"insert into Friendship (user1_id, user2_id) values ('1', '2')"
|
|
],
|
|
"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>\"],\"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,
|
|
"dailyRecordStatus": null,
|
|
"editorType": "CKEDITOR",
|
|
"ugcQuestionId": null,
|
|
"style": "LEETCODE",
|
|
"exampleTestcases": "{\"headers\":{\"Listens\":[\"user_id\",\"song_id\",\"day\"],\"Friendship\":[\"user1_id\",\"user2_id\"]},\"rows\":{\"Listens\":[[1,10,\"2021-03-15\"],[1,11,\"2021-03-15\"],[1,12,\"2021-03-15\"],[2,10,\"2021-03-15\"],[2,11,\"2021-03-15\"],[2,12,\"2021-03-15\"],[3,10,\"2021-03-15\"],[3,11,\"2021-03-15\"],[3,12,\"2021-03-15\"],[4,10,\"2021-03-15\"],[4,11,\"2021-03-15\"],[4,13,\"2021-03-15\"],[5,10,\"2021-03-16\"],[5,11,\"2021-03-16\"],[5,12,\"2021-03-16\"]],\"Friendship\":[[1,2]]}}",
|
|
"__typename": "QuestionNode"
|
|
}
|
|
}
|
|
} |