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-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": 56,
"dislikes": 1,
"likes": 118,
"dislikes": 2,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Intersection of Two Arrays\", \"titleSlug\": \"intersection-of-two-arrays\", \"difficulty\": \"Easy\", \"translatedTitle\": null}, {\"title\": \"Intersection of Two Arrays II\", \"titleSlug\": \"intersection-of-two-arrays-ii\", \"difficulty\": \"Easy\", \"translatedTitle\": null}]",
"exampleTestcases": "[1,2,3]\n[2,4,6]\n[1,2,3,3]\n[1,1,2,2]",
@@ -137,7 +137,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"11.9K\", \"totalSubmission\": \"17.5K\", \"totalAcceptedRaw\": 11908, \"totalSubmissionRaw\": 17510, \"acRate\": \"68.0%\"}",
"stats": "{\"totalAccepted\": \"15.7K\", \"totalSubmission\": \"22.9K\", \"totalAcceptedRaw\": 15715, \"totalSubmissionRaw\": 22852, \"acRate\": \"68.8%\"}",
"hints": [
"For each integer in nums1, check if it exists in nums2.",
"Do the same for each integer in nums2."