1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-04 15:01:40 +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,8 +11,8 @@
"translatedContent": null,
"isPaidOnly": false,
"difficulty": "Easy",
"likes": 866,
"dislikes": 54,
"likes": 867,
"dislikes": 55,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Rank Transform of a Matrix\", \"titleSlug\": \"rank-transform-of-a-matrix\", \"difficulty\": \"Hard\", \"translatedTitle\": null}, {\"title\": \"Find Target Indices After Sorting Array\", \"titleSlug\": \"find-target-indices-after-sorting-array\", \"difficulty\": \"Easy\", \"translatedTitle\": null}]",
"exampleTestcases": "[40,10,20,30]\n[100,100,100]\n[37,12,28,9,100,56,80,5,12]",
@@ -143,7 +143,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"56.1K\", \"totalSubmission\": \"95.9K\", \"totalAcceptedRaw\": 56123, \"totalSubmissionRaw\": 95864, \"acRate\": \"58.5%\"}",
"stats": "{\"totalAccepted\": \"56.3K\", \"totalSubmission\": \"96.2K\", \"totalAcceptedRaw\": 56329, \"totalSubmissionRaw\": 96166, \"acRate\": \"58.6%\"}",
"hints": [
"Use a temporary array to copy the array and sort it.",
"The rank of each element is the number of elements smaller than it in the sorted array plus one."