Answers for "TypeError: 'set' object is not subscriptable if sorted_nums1[i] == sorted_nums2[i]: Line 9 in intersection (Solution.py) ret = Solution().intersection(param_1, param_2) Line 40 in _driver (Solution.py) _driver() Line 51 in <module> (Solution.py)"

8

intersection of two lists python

>>> a = [1,2,3,4,5]
>>> b = [1,3,5,6]
>>> list(set(a) & set(b))
[1, 3, 5]
Posted by: Guest on August-10-2020

Code answers related to "TypeError: 'set' object is not subscriptable if sorted_nums1[i] == sorted_nums2[i]: Line 9 in intersection (Solution.py) ret = Solution().intersection(param_1, param_2) Line 40 in _driver (Solution.py) _driver() Line 51 in <module> (Solution.py)"

Python Answers by Framework

Browse Popular Code Answers by Language