1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-05 07:21:40 +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,7 +11,7 @@
"translatedContent": null,
"isPaidOnly": false,
"difficulty": "Hard",
"likes": 261,
"likes": 267,
"dislikes": 24,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Reconstruct Itinerary\", \"titleSlug\": \"reconstruct-itinerary\", \"difficulty\": \"Hard\", \"translatedTitle\": null}, {\"title\": \"Maximum Length of Repeated Subarray\", \"titleSlug\": \"maximum-length-of-repeated-subarray\", \"difficulty\": \"Medium\", \"translatedTitle\": null}]",
@@ -161,7 +161,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"4.4K\", \"totalSubmission\": \"16K\", \"totalAcceptedRaw\": 4446, \"totalSubmissionRaw\": 15961, \"acRate\": \"27.9%\"}",
"stats": "{\"totalAccepted\": \"4.7K\", \"totalSubmission\": \"16.7K\", \"totalAcceptedRaw\": 4733, \"totalSubmissionRaw\": 16729, \"acRate\": \"28.3%\"}",
"hints": [
"If there is a common path with length x, there is for sure a common path of length y where y < x.",
"We can use binary search over the answer with the range [0, min(path[i].length)].",