Quantcast
Channel: Active questions tagged python - Stack Overflow
Viewing all articles
Browse latest Browse all 13861

Time Complexity of "in" keyword in python when using a list? Leetcode

$
0
0

I read a little bit everywhere that the "in" operator have a time complexity of O(n), yet I used it in a code and idk why but it's acting as if it have the time complexity O(1)

So I was solving a problem on leetcode and ended up having this algorithm

class Solution(object):    def twoSum(self, nums, target):"""        :type nums: List[int]        :type target: int        :rtype: List[int]"""        i=0        n=len(nums)        for i in range (0, n-1):            if (target-nums[i]) in nums:                for j in range (i+1, n):                    if nums[i]+nums[j]==target:                        return[i, j]

and I ended up having runtime pretty similar to code like these that involve hashmaps:

class Solution(object):    def twoSum(self, nums, target):"""        :type nums: List[int]        :type target: int        :rtype: List[int]"""        hash_map = {}        for i in range(len(nums)):            complement = target - nums[i]            if complement in hash_map.keys():                return [i, hash_map[complement]]            hash_map[nums[i]] = i

It's weird because I read everywhere that the time complexity of the in operator for list is O(n), so I assumed this line

if (target-nums[i]) in nums:

would make my code equivalent to

class Solution(object):    def twoSum(self, nums, target):        self=list()        n=len(nums)        for i in range(n-1):          for j in range(i+1,n):            if nums[i]+nums[j]==target:              return [i,j]

yet it has the runtime of a code using hashmaps, and uses the memory of the code using the same list so O(1), anyone could explain that to me please?


Viewing all articles
Browse latest Browse all 13861

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>