You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<h2><ahref="https://leetcode.com/problems/valid-mountain-array">978. Valid Mountain Array</a></h2><h3>Easy</h3><hr><p>Given an array of integers <code>arr</code>, return <em><code>true</code> if and only if it is a valid mountain array</em>.</p>
2
+
3
+
<p>Recall that arr is a mountain array if and only if:</p>
4
+
5
+
<ul>
6
+
<li><code>arr.length >= 3</code></li>
7
+
<li>There exists some <code>i</code> with <code>0 < i < arr.length - 1</code> such that:
0 commit comments