I've created this repo to practise my problem-solving skills for learning purpose only.
src
├── main
│ └── java
│ └── com
│ └── codingquestions
│ └── app
│ ├── ClassicalBinarySearch.java
│ └── SearchInSortedMatrixI.java
│ └── ...
└── test
└── java
└── com
└── codingquestions
└── app
├── ClassicalBinarySearchTest.java
└── SearchInSortedMatrixITest.java
└── ...
In the main folder, it contains the questions and solutions.
In the test folder, it contains a simple unit test for the problem.