leetcode240
Posted AsenYang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode240相关的知识,希望对你有一定的参考价值。
public class Solution { public bool SearchMatrix(int[,] matrix, int target) { int i = 0, j = matrix.GetLength(1) - 1; while (i < matrix.GetLength(0) && j >= 0) { int x = matrix[i, j]; if (target == x) { return true; } else if (target < x) { j--; } else { i++; } } return false; } }
以上是关于leetcode240的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode 240 搜索二维矩阵 II[查找 二分法] HERODING的LeetCode之路
[leetcode]240. Search a 2D Matrix II
LeetCode 240. Search a 2D Matrix II