Skip to content

Commit c00c999

Browse files
committed
tried reformatting
1 parent 8b707be commit c00c999

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/java/LinearSearchIterative.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
public class LinearSearchIterative {
22
public static void main(String[] args) {
3-
int array_1[] = { 1, 2, 40, 233, 78, 83, 456 };
3+
int array_1[] = {1, 2, 40, 233, 78, 83, 456};
44
System.out.println(LinearSearch(array_1, 40));
55
System.out.println(LinearSearch(array_1, 3));
66
}

0 commit comments

Comments
 (0)