(String args[])
| 27 | return false; |
| 28 | } |
| 29 | public static void main(String args[]) { |
| 30 | int matrix[][] = {{10, 20, 30, 40}, |
| 31 | {15, 25, 35, 45}, |
| 32 | {27, 29, 37, 48}, |
| 33 | {32, 33, 39, 50}}; |
| 34 | int key = 33; |
| 35 | staircaseSearch(matrix, key); |
| 36 | } |
| 37 | } |
nothing calls this directly
no test coverage detected