python letcode 1

Posted 照夜白

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python letcode 1相关的知识,希望对你有一定的参考价值。

开始刷 letcode, 简单笔记下自己的答案, 目标十一结束之前搞定所有题目.

1. Two Sum.

class Solution(object):
    def twoSum(self, nums, target):
        """
        :type nums: List[int]
        :type target: int
        :rtype: List[int]
        """
        tmp = []
        for i, j in enumerate(nums):
                tmp.append((i, j))
                
        for k, item in enumerate(tmp):
            l, m = item
            for o, p in tmp[k+1:]:
                if m + p == target:
                    return sorted((l, o))

 

以上是关于python letcode 1的主要内容,如果未能解决你的问题,请参考以下文章

letcode每日一题-对链表进行插入排序

letcode每日一题-移动零

迭代法与开根号求值(letcode 69)

LetCode刷题

计算a+b的值但不能用+等运算符号,letCode的中一道题,

letcode 第三题 判定字符是否唯一