Medium
A peak element in a 2D grid is an element that is strictly greater than all of its adjacent neighbors to the left, right, top, and bottom.
Given a 0-indexed m x n matrix mat where no two adjacent cells are equal, find any peak element mat[i][j] and return the length 2 array [i,j].
You may assume that the entire matrix is surrounded by an outer perimeter with the value -1 in each cell.
You must write an algorithm that runs in O(m log(n)) or O(n log(m)) time.
Example 1:

Input: mat = [[1,4],[3,2]]
Output: [0,1]
Explanation: Both 3 and 4 are peak elements so [1,0] and [0,1] are both acceptable answers.
Example 2:

Input: mat = [[10,20,15],[21,30,14],[7,16,32]]
Output: [1,1]
Explanation: Both 30 and 32 are peak elements so [1,1] and [2,2] are both acceptable answers.
Constraints:
m == mat.lengthn == mat[i].length1 <= m, n <= 5001 <= mat[i][j] <= 105class Solution {
fun findPeakGrid(mat: Array<IntArray>): IntArray {
val n = mat.size
val m = mat[0].size
var l = 0
var r = m - 1
var mid: Int
while (l <= r) {
mid = (l + r) / 2
var mx = mat[0][mid]
var mxi = 0
for (i in 1 until n) {
if (mx < mat[i][mid]) {
mx = mat[i][mid]
mxi = i
}
}
val lv = if (mid > l) mat[mxi][mid - 1] else -1
val rv = if (mid < r) mat[mxi][mid + 1] else -1
if (mx > lv && mx > rv) {
return intArrayOf(mxi, mid)
} else if (mx > lv) {
l = mid + 1
} else {
r = mid - 1
}
}
return intArrayOf(-1, -1)
}
}