1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-05 23:41:41 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
This commit is contained in:
2023-12-09 19:57:46 +08:00
parent 9bc4722a45
commit 3770b44d1e
4792 changed files with 10889 additions and 10886 deletions

View File

@@ -143,7 +143,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"15.2K\", \"totalSubmission\": \"47.8K\", \"totalAcceptedRaw\": 15250, \"totalSubmissionRaw\": 47800, \"acRate\": \"31.9%\"}",
"stats": "{\"totalAccepted\": \"15.3K\", \"totalSubmission\": \"47.8K\", \"totalAcceptedRaw\": 15260, \"totalSubmissionRaw\": 47828, \"acRate\": \"31.9%\"}",
"hints": [
"For each index <code>i >= indexDifference</code>, keep the indices <code>j<sub>1</sub></code> and <code>j<sub>2</sub></code> in the range <code>[0, i - indexDifference]</code> such that <code>nums[j<sub>1</sub>]</code> and <code>nums[j<sub>2</sub>]</code> are the minimum and maximum values in the index range.",
"Check if <code>abs(nums[i] - nums[j<sub>1</sub>]) >= valueDifference</code> or <code>abs(nums[i] - nums[j<sub>2</sub>]) >= valueDifference</code>.",