mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-05 23:41:41 +08:00
update
This commit is contained in:
@@ -11,8 +11,8 @@
|
||||
"translatedContent": null,
|
||||
"isPaidOnly": false,
|
||||
"difficulty": "Medium",
|
||||
"likes": 383,
|
||||
"dislikes": 23,
|
||||
"likes": 384,
|
||||
"dislikes": 24,
|
||||
"isLiked": null,
|
||||
"similarQuestions": "[{\"title\": \"Minimum Operations to Make Array Equal\", \"titleSlug\": \"minimum-operations-to-make-array-equal\", \"difficulty\": \"Medium\", \"translatedTitle\": null}, {\"title\": \"Minimum Number of Operations to Make Arrays Similar\", \"titleSlug\": \"minimum-number-of-operations-to-make-arrays-similar\", \"difficulty\": \"Hard\", \"translatedTitle\": null}]",
|
||||
"exampleTestcases": "[4,3,1,4]\n[1,3,7,1]\n3\n[3,8,5,2]\n[2,4,1,6]\n1",
|
||||
@@ -155,7 +155,7 @@
|
||||
"__typename": "CodeSnippetNode"
|
||||
}
|
||||
],
|
||||
"stats": "{\"totalAccepted\": \"20K\", \"totalSubmission\": \"64.5K\", \"totalAcceptedRaw\": 20040, \"totalSubmissionRaw\": 64529, \"acRate\": \"31.1%\"}",
|
||||
"stats": "{\"totalAccepted\": \"20.1K\", \"totalSubmission\": \"64.5K\", \"totalAcceptedRaw\": 20052, \"totalSubmissionRaw\": 64550, \"acRate\": \"31.1%\"}",
|
||||
"hints": [
|
||||
"What are the cases for which we cannot make nums1 == nums2?",
|
||||
"For minimum moves, if nums1[i] < nums2[i], then we should never decrement nums1[i]. \r\nIf nums1[i] > nums2[i], then we should never increment nums1[i]."
|
||||
|
Reference in New Issue
Block a user