We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b707be commit c00c999Copy full SHA for c00c999
src/java/LinearSearchIterative.java
@@ -1,6 +1,6 @@
1
public class LinearSearchIterative {
2
public static void main(String[] args) {
3
- int array_1[] = { 1, 2, 40, 233, 78, 83, 456 };
+ int array_1[] = {1, 2, 40, 233, 78, 83, 456};
4
System.out.println(LinearSearch(array_1, 40));
5
System.out.println(LinearSearch(array_1, 3));
6
}
0 commit comments