Skip to content

Commit 00833f8

Browse files
committed
941. Valid Mountain Array - wip
1 parent 350554e commit 00833f8

File tree

2 files changed

+15
-10
lines changed

2 files changed

+15
-10
lines changed

algorithms.iml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -45,16 +45,6 @@
4545
<SOURCES />
4646
</library>
4747
</orderEntry>
48-
<orderEntry type="module-library">
49-
<library name="JUnit4">
50-
<CLASSES>
51-
<root url="jar://$MODULE_DIR$/lib/junit-4.13.1.jar!/" />
52-
<root url="jar://$MODULE_DIR$/lib/hamcrest-core-1.3.jar!/" />
53-
</CLASSES>
54-
<JAVADOC />
55-
<SOURCES />
56-
</library>
57-
</orderEntry>
5848
<orderEntry type="module-library">
5949
<library name="JUnit5.8.1">
6050
<CLASSES>
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
package arrays;
2+
3+
import annotation.Quality;
4+
import annotation.Stage;
5+
6+
/*
7+
* 941. Valid Mountain Array
8+
* */
9+
@Quality(Stage.INCOMPLETE)
10+
public class ValidMountainArray {
11+
12+
public boolean validMountainArray(int[] arr) {
13+
return false;
14+
}
15+
}

0 commit comments

Comments
 (0)