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-03-29 15:21:05 +08:00
parent b84ae535b7
commit e730aa6794
2244 changed files with 8703 additions and 59499 deletions

View File

@@ -11,7 +11,7 @@
"translatedContent": null,
"isPaidOnly": false,
"difficulty": "Medium",
"likes": 400,
"likes": 402,
"dislikes": 19,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Number of Pairs of Interchangeable Rectangles\", \"titleSlug\": \"number-of-pairs-of-interchangeable-rectangles\", \"difficulty\": \"Medium\", \"translatedTitle\": null}]",
@@ -155,7 +155,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"14K\", \"totalSubmission\": \"34.9K\", \"totalAcceptedRaw\": 14017, \"totalSubmissionRaw\": 34888, \"acRate\": \"40.2%\"}",
"stats": "{\"totalAccepted\": \"14K\", \"totalSubmission\": \"35K\", \"totalAcceptedRaw\": 14047, \"totalSubmissionRaw\": 34951, \"acRate\": \"40.2%\"}",
"hints": [
"The condition can be rearranged to (nums[i] - rev(nums[i])) == (nums[j] - rev(nums[j])).",
"Transform each nums[i] into (nums[i] - rev(nums[i])). Then, count the number of (i, j) pairs that have equal values.",