mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-25 05:22:39 +08:00
style: enable HideUtilityClassConstructor
in checkstyle (#5147)
This commit is contained in:
@ -10,6 +10,8 @@ import java.util.List;
|
||||
*/
|
||||
|
||||
public final class MedianOfMatrix {
|
||||
private MedianOfMatrix() {
|
||||
}
|
||||
|
||||
public static int median(List<List<Integer>> matrix) {
|
||||
// Flatten the matrix into a 1D list
|
||||
|
Reference in New Issue
Block a user