mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-04 06:51:41 +08:00
update
This commit is contained in:
71
leetcode/originData/[no content]page-recommendations.json
Normal file
71
leetcode/originData/[no content]page-recommendations.json
Normal file
@@ -0,0 +1,71 @@
|
||||
{
|
||||
"data": {
|
||||
"question": {
|
||||
"questionId": "1399",
|
||||
"questionFrontendId": "1264",
|
||||
"boundTopicId": null,
|
||||
"title": "Page Recommendations",
|
||||
"titleSlug": "page-recommendations",
|
||||
"content": null,
|
||||
"translatedTitle": null,
|
||||
"translatedContent": null,
|
||||
"isPaidOnly": true,
|
||||
"difficulty": "Medium",
|
||||
"likes": 136,
|
||||
"dislikes": 10,
|
||||
"isLiked": null,
|
||||
"similarQuestions": "[{\"title\": \"Page Recommendations II\", \"titleSlug\": \"page-recommendations-ii\", \"difficulty\": \"Hard\", \"translatedTitle\": null}, {\"title\": \"Strong Friendship\", \"titleSlug\": \"strong-friendship\", \"difficulty\": \"Medium\", \"translatedTitle\": null}]",
|
||||
"exampleTestcases": "{\"headers\":{\"Friendship\":[\"user1_id\",\"user2_id\"],\"Likes\":[\"user_id\",\"page_id\"]},\"rows\":{\"Friendship\":[[1,2],[1,3],[1,4],[2,3],[2,4],[2,5],[6,1]],\"Likes\":[[1,88],[2,23],[3,24],[4,56],[5,11],[6,33],[2,77],[3,77],[6,88]]}}",
|
||||
"categoryTitle": "Database",
|
||||
"contributors": [],
|
||||
"topicTags": [
|
||||
{
|
||||
"name": "Database",
|
||||
"slug": "database",
|
||||
"translatedName": null,
|
||||
"__typename": "TopicTagNode"
|
||||
}
|
||||
],
|
||||
"companyTagStats": null,
|
||||
"codeSnippets": null,
|
||||
"stats": "{\"totalAccepted\": \"21.8K\", \"totalSubmission\": \"32.2K\", \"totalAcceptedRaw\": 21825, \"totalSubmissionRaw\": 32247, \"acRate\": \"67.7%\"}",
|
||||
"hints": [],
|
||||
"solution": null,
|
||||
"status": null,
|
||||
"sampleTestCase": "{\"headers\":{\"Friendship\":[\"user1_id\",\"user2_id\"],\"Likes\":[\"user_id\",\"page_id\"]},\"rows\":{\"Friendship\":[[1,2],[1,3],[1,4],[2,3],[2,4],[2,5],[6,1]],\"Likes\":[[1,88],[2,23],[3,24],[4,56],[5,11],[6,33],[2,77],[3,77],[6,88]]}}",
|
||||
"metaData": "{\n \"mysql\": [\n \"Create table If Not Exists Friendship (user1_id int, user2_id int)\",\n \"Create table If Not Exists Likes (user_id int, page_id int)\"\n ],\n \"mssql\": [\n \"Create table Friendship (user1_id int, user2_id int)\",\n \"Create table Likes (user_id int, page_id int)\"\n ],\n \"oraclesql\": [\n \"Create table Friendship (user1_id int, user2_id int)\",\n \"Create table Likes (user_id int, page_id int)\"\n ],\n \"database\": true\n}",
|
||||
"judgerAvailable": true,
|
||||
"judgeType": "large",
|
||||
"mysqlSchemas": [
|
||||
"Create table If Not Exists Friendship (user1_id int, user2_id int)",
|
||||
"Create table If Not Exists Likes (user_id int, page_id int)",
|
||||
"Truncate table Friendship",
|
||||
"insert into Friendship (user1_id, user2_id) values ('1', '2')",
|
||||
"insert into Friendship (user1_id, user2_id) values ('1', '3')",
|
||||
"insert into Friendship (user1_id, user2_id) values ('1', '4')",
|
||||
"insert into Friendship (user1_id, user2_id) values ('2', '3')",
|
||||
"insert into Friendship (user1_id, user2_id) values ('2', '4')",
|
||||
"insert into Friendship (user1_id, user2_id) values ('2', '5')",
|
||||
"insert into Friendship (user1_id, user2_id) values ('6', '1')",
|
||||
"Truncate table Likes",
|
||||
"insert into Likes (user_id, page_id) values ('1', '88')",
|
||||
"insert into Likes (user_id, page_id) values ('2', '23')",
|
||||
"insert into Likes (user_id, page_id) values ('3', '24')",
|
||||
"insert into Likes (user_id, page_id) values ('4', '56')",
|
||||
"insert into Likes (user_id, page_id) values ('5', '11')",
|
||||
"insert into Likes (user_id, page_id) values ('6', '33')",
|
||||
"insert into Likes (user_id, page_id) values ('2', '77')",
|
||||
"insert into Likes (user_id, page_id) values ('3', '77')",
|
||||
"insert into Likes (user_id, page_id) values ('6', '88')"
|
||||
],
|
||||
"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"
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user