Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

list_=[]
a=int(input("enter range"))
for i in range(0,a):
    ele=int(input())
    list_.append(ele)
print(list_)
target=int(input())
list2=[]

if list_[x]+list_[y]==target:
    list2.append(x,y)
    print(list2)
question from:https://stackoverflow.com/questions/66059821/i-am-trying-to-solve-two-sums-in-leet-code-using-python-can-you-correct-it

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.3k views
Welcome To Ask or Share your Answers For Others

1 Answer

You need to loop through your list to find the pairs of values that match your target

list_=[]
a=int(input("enter range"))
for i in range(0,a):
    ele=int(input())
    list_.append(ele)
print(list_)
target=int(input())
list2=[]
for x in list_:
  y = target - x
  if y in list_:
    list2.append((x,y))
print(list2)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...