1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-03 14:32:54 +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": true,
"difficulty": "Medium",
"likes": 10,
"dislikes": 2,
"likes": 14,
"dislikes": 4,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Count Array Pairs Divisible by K\", \"titleSlug\": \"count-array-pairs-divisible-by-k\", \"difficulty\": \"Hard\", \"translatedTitle\": null}]",
"exampleTestcases": "[4,6,7,3,2]\n[1,2,2]\n[1,1,1]",
@@ -28,7 +28,7 @@
],
"companyTagStats": null,
"codeSnippets": null,
"stats": "{\"totalAccepted\": \"386\", \"totalSubmission\": \"680\", \"totalAcceptedRaw\": 386, \"totalSubmissionRaw\": 680, \"acRate\": \"56.8%\"}",
"stats": "{\"totalAccepted\": \"456\", \"totalSubmission\": \"793\", \"totalAcceptedRaw\": 456, \"totalSubmissionRaw\": 793, \"acRate\": \"57.5%\"}",
"hints": [
"The maximum value of nums.length is very large, but the maximum value of nums[i] is not.",
"Count the number of times each value appears in nums. Brute force through every possible combination of values and count how many single divisor triplets can be made with that combination of values."