Python | Leetcode Python题解之第240题搜索二维矩阵II

题目:

题解:

python 复制代码
class Solution:
    def searchMatrix(self, matrix: List[List[int]], target: int) -> bool:
        m, n = len(matrix), len(matrix[0])
        x, y = 0, n - 1
        while x < m and y >= 0:
            if matrix[x][y] == target:
                return True
            if matrix[x][y] > target:
                y -= 1
            else:
                x += 1
        return False
相关推荐
aloha_7891 小时前
联易融测开面试准备
java·python·面试·单元测试
im_AMBER1 小时前
Leetcode 63 定长子串中元音的最大数目
c++·笔记·学习·算法·leetcode
小白程序员成长日记2 小时前
2025.11.29 力扣每日一题
数据结构·算法·leetcode
学历真的很重要2 小时前
LangChain V1.0 Short-term Memory 详细指南
后端·python·语言模型·面试·langchain·agent·ai编程
LitchiCheng3 小时前
Mujoco 基础:获取模型中所有 body 的 name, id 以及位姿
人工智能·python
老鱼说AI3 小时前
算法基础教学第一步:数据结构
数据结构·python·算法
2301_795167203 小时前
Python 高手编程系列八:缓存
开发语言·python·缓存
闲人编程3 小时前
Django测试框架深度使用:Factory Boy与Fixture对比
数据库·python·django·sqlite·钩子·fixture·codecapsule
梅花143 小时前
基于Django房屋租赁系统
后端·python·django·bootstrap·django项目·django网站
今天没有盐3 小时前
Python数据分析实战:从超市销售到教学评估
python·pycharm·编程语言