Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.3k views
in Technique[技术] by (71.8m points)

i am trying to solve two sums in leet code using python can you correct it?

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...