1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-04 06:51: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

@@ -12,7 +12,7 @@
"isPaidOnly": true,
"difficulty": "Medium",
"likes": 81,
"dislikes": 13,
"dislikes": 15,
"isLiked": null,
"similarQuestions": "[]",
"exampleTestcases": "[0,1,2,4]\n[10,20,50,10]",
@@ -40,7 +40,7 @@
],
"companyTagStats": null,
"codeSnippets": null,
"stats": "{\"totalAccepted\": \"1.1K\", \"totalSubmission\": \"2.2K\", \"totalAcceptedRaw\": 1111, \"totalSubmissionRaw\": 2178, \"acRate\": \"51.0%\"}",
"stats": "{\"totalAccepted\": \"1.1K\", \"totalSubmission\": \"2.2K\", \"totalAcceptedRaw\": 1133, \"totalSubmissionRaw\": 2219, \"acRate\": \"51.1%\"}",
"hints": [
"Imagine the array is empty, and each element is coming to its index one by one, starting with the smallest element.",
"For each coming element nums[i], calculate L and R, the indices of the first smallest elements on the left and the right respectively.",