1380.矩阵中的好运气数(javascript)LuckyNumbersinaMatrix
原创给你一个 m * n 在矩阵中,矩阵中的数字 各不相同 。请你按 任意 按顺序返回矩阵中的所有幸运数字。
幸运数 指矩阵中满足以下两个条件的元素:
同一行中所有元素中最小的元素。
在同一列的所有元素中最大
Given an m x n matrix of distinct numbers, return all lucky numbers in the matrix in any order.
A lucky number is an element of the matrix such that it is the minimum element in its row and maximum in its column.
示例 1:
输入:matrix = [[3,7,8],[9,11,13],[15,16,17]]
输出:[15]
解释:15 是唯一的幸运数字,因为它是行中的最小值,列中的最大值。
示例 2:
输入:matrix = [[1,10,4,2],[9,3,8,7],[15,16,17,12]]
输出:[12]
解释:12 是唯一的幸运数字,因为它是行中的最小值,列中的最大值。
示例 3:
输入:matrix = [[7,8],[1,2]]
输出:[7]
解释:7是唯一的幸运数字,因为它是行中的最小值,列中的最大值。
根据题意
找到每行的最小值并形成一个数组。
找到每一列的最大值并组成一个数组。
返回两个数组的交集
var luckyNumbers = function (matrix) {
let m = matrix.length
let n = matrix[0].length
let minList = []
let maxList = []
for (let i = 0; i < m; i++) {
minList.push(Math.min.apply(Math, matrix[i]))
}
for (let j = 0; j < n; j++) {
let list = []
for (let i = 0; i < m; i++) {
list.push(matrix[i][j])
}
maxList.push(Math.max.apply(Math, list))
}
let result = maxList.filter((item) => {
return minList.indexOf(item) > -1
})
return result
};
leetcode: https://leetcode.cn/problems/lucky-numbers-in-a-matrix/
版权声明
所有资源都来源于爬虫采集,如有侵权请联系我们,我们将立即删除