mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-06 17:29:31 +08:00
Add tests in SearchInARowAndColWiseSortedMatrix
(#5675)
This commit is contained in:
@ -8,7 +8,6 @@ public class SearchInARowAndColWiseSortedMatrix {
|
||||
* @param value Key being searched for
|
||||
* @author Sadiul Hakim : https://github.com/sadiul-hakim
|
||||
*/
|
||||
|
||||
public int[] search(int[][] matrix, int value) {
|
||||
int n = matrix.length;
|
||||
// This variable iterates over rows
|
||||
|
Reference in New Issue
Block a user