mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-03 14:32:54 +08:00
update
This commit is contained in:
@@ -0,0 +1,73 @@
|
||||
{
|
||||
"data": {
|
||||
"question": {
|
||||
"questionId": "2064",
|
||||
"questionFrontendId": "1919",
|
||||
"boundTopicId": null,
|
||||
"title": "Leetcodify Similar Friends",
|
||||
"titleSlug": "leetcodify-similar-friends",
|
||||
"content": null,
|
||||
"translatedTitle": null,
|
||||
"translatedContent": null,
|
||||
"isPaidOnly": true,
|
||||
"difficulty": "Hard",
|
||||
"likes": 28,
|
||||
"dislikes": 4,
|
||||
"isLiked": null,
|
||||
"similarQuestions": "[{\"title\": \"Leetcodify Friends Recommendations\", \"titleSlug\": \"leetcodify-friends-recommendations\", \"difficulty\": \"Hard\", \"translatedTitle\": null}]",
|
||||
"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],[2,4],[2,5]]}}",
|
||||
"categoryTitle": "Database",
|
||||
"contributors": [],
|
||||
"topicTags": [
|
||||
{
|
||||
"name": "Database",
|
||||
"slug": "database",
|
||||
"translatedName": null,
|
||||
"__typename": "TopicTagNode"
|
||||
}
|
||||
],
|
||||
"companyTagStats": null,
|
||||
"codeSnippets": null,
|
||||
"stats": "{\"totalAccepted\": \"2.4K\", \"totalSubmission\": \"5.7K\", \"totalAcceptedRaw\": 2424, \"totalSubmissionRaw\": 5722, \"acRate\": \"42.4%\"}",
|
||||
"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],[2,4],[2,5]]}}",
|
||||
"metaData": "{\n \"mysql\": [\n \"Create table If Not Exists Listens (user_id int, song_id int, day date)\",\n \"Create table If Not Exists Friendship (user1_id int, user2_id int)\"\n ],\n \"mssql\": [\n \"Create table Listens (user_id int, song_id int, day date)\",\n \"Create table Friendship (user1_id int, user2_id int)\"\n ],\n \"oraclesql\": [\n \"Create table Listens (user_id int, song_id int, day date)\",\n \"Create table Friendship (user1_id int, user2_id int)\",\n \"ALTER SESSION SET nls_date_format='YYYY-MM-DD'\"\n ],\n \"database\": true\n}",
|
||||
"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')",
|
||||
"insert into Friendship (user1_id, user2_id) values ('2', '4')",
|
||||
"insert into Friendship (user1_id, user2_id) values ('2', '5')"
|
||||
],
|
||||
"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