1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-16 16:36:56 +02:00
LeetCode/java/lucky-numbers-in-a-matrix.java
Matej Focko bf30ec7ec7
java: add «1380. Lucky Numbers in a Matrix»
Signed-off-by: Matej Focko <me@mfocko.xyz>
2024-07-19 10:12:01 +02:00

29 lines
821 B
Java

class Solution {
public List<Integer> luckyNumbers(int[][] matrix) {
int rows = matrix.length, cols = matrix[0].length;
int rowCandidate = Integer.MIN_VALUE;
for (int y = 0; y < rows; ++y) {
int currentRow = matrix[y][0];
for (int x = 1; x < cols; ++x) {
currentRow = Math.min(currentRow, matrix[y][x]);
}
rowCandidate = Math.max(rowCandidate, currentRow);
}
int colCandidate = Integer.MAX_VALUE;
for (int x = 0; x < cols; ++x) {
int currentCol = matrix[0][x];
for (int y = 1; y < rows; ++y) {
currentCol = Math.max(currentCol, matrix[y][x]);
}
colCandidate = Math.min(colCandidate, currentCol);
}
if (rowCandidate == colCandidate) {
return Arrays.asList(rowCandidate);
}
return List.<Integer>of();
}
}