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-03-29 15:21:05 +08:00
parent b84ae535b7
commit e730aa6794
2244 changed files with 8703 additions and 59499 deletions

View File

@@ -11,7 +11,7 @@
"translatedContent": null,
"isPaidOnly": true,
"difficulty": "Medium",
"likes": 22,
"likes": 23,
"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\": \"670\", \"totalSubmission\": \"1.1K\", \"totalAcceptedRaw\": 670, \"totalSubmissionRaw\": 1143, \"acRate\": \"58.6%\"}",
"stats": "{\"totalAccepted\": \"690\", \"totalSubmission\": \"1.2K\", \"totalAcceptedRaw\": 690, \"totalSubmissionRaw\": 1174, \"acRate\": \"58.8%\"}",
"hints": [
"With the constraints, could we try every substring?",
"Yes, checking every substring has runtime O(n^2), which will pass.",