1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-04 15:01:40 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
This commit is contained in:
2022-03-29 16:56:27 +08:00
parent e730aa6794
commit ad15da05aa
2517 changed files with 7358 additions and 7332 deletions

View File

@@ -12,7 +12,7 @@
"translatedContent": null,
"isPaidOnly": true,
"difficulty": "Hard",
"likes": 33,
"likes": 34,
"dislikes": 0,
"isLiked": null,
"similarQuestions": "[]",
@@ -40,7 +40,7 @@
],
"companyTagStats": null,
"codeSnippets": null,
"stats": "{\"totalAccepted\": \"2.2K\", \"totalSubmission\": \"3.1K\", \"totalAcceptedRaw\": 2229, \"totalSubmissionRaw\": 3098, \"acRate\": \"71.9%\"}",
"stats": "{\"totalAccepted\": \"2.2K\", \"totalSubmission\": \"3.1K\", \"totalAcceptedRaw\": 2233, \"totalSubmissionRaw\": 3102, \"acRate\": \"72.0%\"}",
"hints": [
"Given a data structure that answers queries of the type to find the minimum in a range of an array (Range minimum query (RMQ) sparse table) in O(1) time. How can you solve this problem?",
"For each starting index do a binary search with an RMQ to find the ending possible position."