1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-10-22 05:26:46 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
This commit is contained in:
2022-05-02 23:44:12 +08:00
parent 7ea03594b3
commit 2a71c78585
4790 changed files with 11696 additions and 10944 deletions

View File

@@ -11,8 +11,8 @@
"translatedContent": null,
"isPaidOnly": false,
"difficulty": "Medium",
"likes": 1596,
"dislikes": 27,
"likes": 1635,
"dislikes": 28,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Edit Distance\", \"titleSlug\": \"edit-distance\", \"difficulty\": \"Hard\", \"translatedTitle\": null}]",
"exampleTestcases": "[1,4,2]\n[1,2,4]\n[2,5,1,2,5]\n[10,5,2,1,5,2]\n[1,3,7,1,7,5]\n[1,9,2,5,1]",
@@ -143,7 +143,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"66.2K\", \"totalSubmission\": \"114.5K\", \"totalAcceptedRaw\": 66213, \"totalSubmissionRaw\": 114515, \"acRate\": \"57.8%\"}",
"stats": "{\"totalAccepted\": \"67.1K\", \"totalSubmission\": \"115.9K\", \"totalAcceptedRaw\": 67111, \"totalSubmissionRaw\": 115916, \"acRate\": \"57.9%\"}",
"hints": [
"Think dynamic programming. Given an oracle dp(i,j) that tells us how many lines A[i:], B[j:] [the sequence A[i], A[i+1], ... and B[j], B[j+1], ...] are uncrossed, can we write this as a recursion?"
],