1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-03 06:22:54 +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

@@ -137,7 +137,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"65.8K\", \"totalSubmission\": \"167.5K\", \"totalAcceptedRaw\": 65846, \"totalSubmissionRaw\": 167453, \"acRate\": \"39.3%\"}",
"stats": "{\"totalAccepted\": \"65.9K\", \"totalSubmission\": \"167.6K\", \"totalAcceptedRaw\": 65889, \"totalSubmissionRaw\": 167596, \"acRate\": \"39.3%\"}",
"hints": [
"It's very easy to keep track of a monotonically increasing or decreasing ordering of elements. You just need to be able to determine the start of the valley in the mountain and from that point onwards, it should be a valley i.e. no mini-hills after that. Use this information in regards to the values in the array and you will be able to come up with a straightforward solution."
],