Leetcode two_Sum Problem | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Leetcode two_Sum Problem

I got my first problem at Leetcode! The easiest one though... I completed with a while and several if statements. But when I try to use another solution, I was stuck. ......def two_sum(self,nums,target)....... j=1 while True: for i in range(j): If j<=len(nums)-1: if nums[i]+nums[j]==target: return [i,j] break else: j+=1 else: break Anyone can take a look and any help?

2nd May 2019, 7:23 PM
Chen Zhang
Chen Zhang - avatar
5 Answers
+ 3
The while loop is infinite. The break statements only act on the "for" and "if" loops. The logic behind your code seems to be fine, but I can't be sure since there's no description about the problem.
2nd May 2019, 9:36 PM
Diego
Diego - avatar
+ 1
Hi Diego, thank you for reply. Below is the problem itself. Given an array of integers, return indices of the two numbers such that they add up to a specific target. You may assume that each input would have exactly one solution, and you may not use the same element twice. Example: Given nums = [2, 7, 11, 15], target = 9, Because nums[0] + nums[1] = 2 + 7 = 9, return [0, 1]. I skipped the class and function, just focused on the algorithm. Do you think the range(j) is an issue?
2nd May 2019, 11:02 PM
Chen Zhang
Chen Zhang - avatar
+ 1
j=1 while j <= len(nums)-1: for i in range(j): if nums[i]+nums[j]=target: return [i,j] else: pass j+=1 problem resolved.
3rd May 2019, 3:41 AM
Chen Zhang
Chen Zhang - avatar
+ 1
for j in range(len(nums)): for i in range(j): if nums[i] + nums[j] == target: return [i,j]
3rd May 2019, 3:44 AM
Diego
Diego - avatar
0
Yours looks better. The runtimes are similar, since our logics are the same, I assume.
3rd May 2019, 1:45 PM
Chen Zhang
Chen Zhang - avatar