1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-05 07:21:40 +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,8 +11,8 @@
"translatedContent": null,
"isPaidOnly": false,
"difficulty": "Medium",
"likes": 906,
"dislikes": 54,
"likes": 939,
"dislikes": 56,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Count Array Pairs Divisible by K\", \"titleSlug\": \"count-array-pairs-divisible-by-k\", \"difficulty\": \"Hard\", \"translatedTitle\": null}]",
"exampleTestcases": "[1,2,3,4,5,10,6,7,8,9]\n5\n[1,2,3,4,5,6]\n7\n[1,2,3,4,5,6]\n10",
@@ -149,7 +149,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"29.8K\", \"totalSubmission\": \"73.7K\", \"totalAcceptedRaw\": 29787, \"totalSubmissionRaw\": 73650, \"acRate\": \"40.4%\"}",
"stats": "{\"totalAccepted\": \"30.6K\", \"totalSubmission\": \"75.5K\", \"totalAcceptedRaw\": 30571, \"totalSubmissionRaw\": 75487, \"acRate\": \"40.5%\"}",
"hints": [
"Keep an array of the frequencies of ((x % k) + k) % k for each x in arr.",
"for each i in [0, k - 1] we need to check if freq[k] == freq[k - i]",