Skip to content

Commit 28be924

Browse files
Update _03_Linear_Search_in_Range.java
1 parent 0f84638 commit 28be924

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

_21_Data_Structure_Problems/_04_Searching_Problems/Linear_Search/_03_Linear_Search_in_Range.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
package com.Searching_Problems.Linear_Search;
2-
31
public class _03_Linear_Search_in_Range {
42
public static void main(String[] args) {
53
int[] arr = {18, 12, -7, 3, 14, 28};
@@ -21,4 +19,4 @@ static int linearSearch1(int[] arr, int target, int start, int end) {
2119
// If none of the above statement run
2220
return -1;
2321
}
24-
}
22+
}

0 commit comments

Comments
 (0)