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,8 +11,8 @@
"translatedContent": null,
"isPaidOnly": false,
"difficulty": "Hard",
"likes": 177,
"dislikes": 166,
"likes": 182,
"dislikes": 172,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Find Substring With Given Hash Value\", \"titleSlug\": \"find-substring-with-given-hash-value\", \"difficulty\": \"Hard\", \"translatedTitle\": null}]",
"exampleTestcases": "\"abcabcabc\"\n\"leetcodeleetcode\"",
@@ -167,7 +167,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"11.3K\", \"totalSubmission\": \"22.6K\", \"totalAcceptedRaw\": 11308, \"totalSubmissionRaw\": 22574, \"acRate\": \"50.1%\"}",
"stats": "{\"totalAccepted\": \"11.4K\", \"totalSubmission\": \"22.9K\", \"totalAcceptedRaw\": 11449, \"totalSubmissionRaw\": 22949, \"acRate\": \"49.9%\"}",
"hints": [
"Given a substring of the text, how to check if it can be written as the concatenation of a string with itself ?",
"We can do that in linear time, a faster way is to use hashing.",