Python | Leetcode Python题解之第167题两数之和II-输入有序数组

题目:

题解:

python 复制代码
class Solution:
    def twoSum(self, numbers: List[int], target: int) -> List[int]:
        low, high = 0, len(numbers) - 1
        while low < high:
            total = numbers[low] + numbers[high]
            if total == target:
                return [low + 1, high + 1]
            elif total < target:
                low += 1
            else:
                high -= 1

        return [-1, -1]
相关推荐
云里雾里!5 分钟前
力扣 977. 有序数组的平方:双指针法的优雅解法
算法·leetcode·职场和发展
二川bro1 小时前
量子计算入门:Python量子编程基础
python
夏天的味道٥2 小时前
@JsonIgnore对Date类型不生效
开发语言·python
tsumikistep2 小时前
【前后端】接口文档与导入
前端·后端·python·硬件架构
小白学大数据3 小时前
Python爬虫伪装策略:如何模拟浏览器正常访问JSP站点
java·开发语言·爬虫·python
头发还在的女程序员4 小时前
三天搞定招聘系统!附完整源码
开发语言·python
温轻舟4 小时前
Python自动办公工具06-设置Word文档中表格的格式
开发语言·python·word·自动化工具·温轻舟
花酒锄作田4 小时前
[python]FastAPI-Tracking ID 的设计
python·fastapi
AI-智能5 小时前
别啃文档了!3 分钟带小白跑完 Dify 全链路:从 0 到第一个 AI 工作流
人工智能·python·自然语言处理·llm·embedding·agent·rag
Dream it possible!5 小时前
LeetCode 面试经典 150_二叉搜索树_二叉搜索树中第 K 小的元素(86_230_C++_中等)
c++·leetcode·面试