g1001_1100.s1095_find_in_mountain_array.MountainArray Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of leetcode-in-java Show documentation
Show all versions of leetcode-in-java Show documentation
Java-based LeetCode algorithm problem solutions, regularly updated
package g1001_1100.s1095_find_in_mountain_array;
interface MountainArray {
int get(int index);
int length();
}