1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-04 23:11:41 +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": true,
"difficulty": "Medium",
"likes": 23,
"likes": 29,
"dislikes": 3,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Number of Equal Count Substrings\", \"titleSlug\": \"number-of-equal-count-substrings\", \"difficulty\": \"Medium\", \"translatedTitle\": null}, {\"title\": \"Substrings That Begin and End With the Same Letter\", \"titleSlug\": \"substrings-that-begin-and-end-with-the-same-letter\", \"difficulty\": \"Medium\", \"translatedTitle\": null}]",
@@ -52,7 +52,7 @@
],
"companyTagStats": null,
"codeSnippets": null,
"stats": "{\"totalAccepted\": \"690\", \"totalSubmission\": \"1.2K\", \"totalAcceptedRaw\": 690, \"totalSubmissionRaw\": 1174, \"acRate\": \"58.8%\"}",
"stats": "{\"totalAccepted\": \"883\", \"totalSubmission\": \"1.5K\", \"totalAcceptedRaw\": 883, \"totalSubmissionRaw\": 1461, \"acRate\": \"60.4%\"}",
"hints": [
"With the constraints, could we try every substring?",
"Yes, checking every substring has runtime O(n^2), which will pass.",