python leetcode practice

來源:互聯網
上載者:User

標籤:

preface:leetcode練習https://leetcode.com/problemset/algorithms/

question:1.Two Sum

Given an array of integers, find two numbers such that they add up to a specific target number.

The function twoSum should return indices of the two numbers such that they add up to the target, where index1 must be less than index2. Please note that your returned answers (both index1 and index2) are not zero-based.

You may assume that each input would have exactly one solution.

Input: numbers={2, 7, 11, 15}, target=9
Output: index1=1, index2=2


coding:

class Solution:    # @return a tuple, (index1, index2)    def twoSum(self, num, target):        index1 = -1        index2 = -1        num_dict = {}        num_len =len(sum)        for i in range(num_len):            temp = {num[i]:i}            num_dict.update{temp}        for i in num_dict:            if target-i in num_dict and num_dict[i]!=num_dict[target-i]:                index1 = num_dict[i]                index2 = num_dict[target-i]                break            else:                print "without suitable answer"        return (index1,index2)

不知為何一直提醒

Runtime Error Message: Line 10: SyntaxError: invalid syntax
Last executed input: [3,2,4], 6
先mark,有空再想,進入next題

python leetcode practice

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.