1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-05 23:41:41 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
This commit is contained in:
2023-12-09 19:57:46 +08:00
parent 9bc4722a45
commit 3770b44d1e
4792 changed files with 10889 additions and 10886 deletions

View File

@@ -11,7 +11,7 @@
"translatedContent": null,
"isPaidOnly": false,
"difficulty": "Easy",
"likes": 1164,
"likes": 1165,
"dislikes": 109,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Kth Largest Element in an Array\", \"titleSlug\": \"kth-largest-element-in-an-array\", \"difficulty\": \"Medium\", \"translatedTitle\": null}, {\"title\": \"Maximize Sum Of Array After K Negations\", \"titleSlug\": \"maximize-sum-of-array-after-k-negations\", \"difficulty\": \"Easy\", \"translatedTitle\": null}, {\"title\": \"Sort Integers by The Number of 1 Bits\", \"titleSlug\": \"sort-integers-by-the-number-of-1-bits\", \"difficulty\": \"Easy\", \"translatedTitle\": null}, {\"title\": \"Minimum Difference in Sums After Removal of Elements\", \"titleSlug\": \"minimum-difference-in-sums-after-removal-of-elements\", \"difficulty\": \"Hard\", \"translatedTitle\": null}]",
@@ -161,7 +161,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"42.3K\", \"totalSubmission\": \"98.5K\", \"totalAcceptedRaw\": 42308, \"totalSubmissionRaw\": 98549, \"acRate\": \"42.9%\"}",
"stats": "{\"totalAccepted\": \"42.3K\", \"totalSubmission\": \"98.6K\", \"totalAcceptedRaw\": 42317, \"totalSubmissionRaw\": 98568, \"acRate\": \"42.9%\"}",
"hints": [
"From a greedy perspective, what k elements should you pick?",
"Could you sort the array while maintaining the index?"