func searchMatrix(matrix [][]int, target int) bool {
m, n := len(matrix), len(matrix[0])
x, y := 0, n-1
for x < m && y >= 0 {
if matrix[x][y] == target {
return true
}
if matrix[x][y] > target {
y--
} else {
x++
}
}
return false
}
相关文章
- Golang | Leetcode Golang题解之第240题搜索二维矩阵II-题解:
- 抖音短视频seo矩阵系统源码(搭建技术开发分享)
- LeetCode两数之和
- s3c2440 移值u-boot-2016.03 第4篇 支持NAND flash 识别
- ESA2GJK1DH1K基础篇: 测试APP扫描Air202上面的二维码绑定通过MQTT控制设备(兼容SIM800)
- 在Application中集成Microsoft Translator服务之使用http获取服务
- uboot移植之环境变量在NandFlash
- 数仓建模详解:电商案例解析(第38天)
- Pyhton函数篇(一)之函数中的形参与实参
- Machine learning 第8周编程作业 K-means and PCA