mirror of
https://gitlab.com/mfocko/LeetCode.git
synced 2024-11-09 15:59:06 +01:00
java: add «1380. Lucky Numbers in a Matrix»
Signed-off-by: Matej Focko <me@mfocko.xyz>
This commit is contained in:
parent
4e0ce85262
commit
bf30ec7ec7
1 changed files with 29 additions and 0 deletions
29
java/lucky-numbers-in-a-matrix.java
Normal file
29
java/lucky-numbers-in-a-matrix.java
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
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();
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue