Skip to content

Commit aaa2b26

Browse files
Import Package into the RecursiveBinarySearchTest and RecursiveBinarySearch Co-authored-by: PiyushPagar1 <[email protected]>
1 parent 081f308 commit aaa2b26

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/main/java/com/thealgorithms/searches/RecursiveBinarySearch.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Created:- 1/10/2023
33
// File Name should be RecursiveBinarySearch.java
44
// Explanation:- https://www.tutorialspoint.com/java-program-for-binary-search-recursive
5-
5+
package com.thealgorithms.searches;
66
import java.util.*;
77

88
// Create a SearchAlgorithm class with a generic type

src/test/java/com/thealgorithms/searches/RecursiveBinarySearchTest.java

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// Created by Pronay Debnath
22
// Date:- 1/10/2023
33
// Test file updated with JUnit tests
4+
package com.thealgorithms.searches;
45

56
import static org.junit.jupiter.api.Assertions.*;
67

0 commit comments

Comments
 (0)