1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-07 08:21: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

@@ -40,7 +40,7 @@
],
"companyTagStats": null,
"codeSnippets": null,
"stats": "{\"totalAccepted\": \"706\", \"totalSubmission\": \"964\", \"totalAcceptedRaw\": 706, \"totalSubmissionRaw\": 964, \"acRate\": \"73.2%\"}",
"stats": "{\"totalAccepted\": \"707\", \"totalSubmission\": \"965\", \"totalAcceptedRaw\": 707, \"totalSubmissionRaw\": 965, \"acRate\": \"73.3%\"}",
"hints": [
"For each index, we must find the nearest bigger element on both its left and right sides.",
"First, find the nearest bigger element on the left side of each element. To do that, use a stack of pairs <code>(value, index)</code>.",