when I click debug, an error comes on console says no matches found
Also system unable to import these files "from python3problem15 import * "
I'm unable to debug in python
OS - MAC OSX
Extension Output
Paste here the LeetCode extension log from output channel.
- Downloading 3sum
#
# @lc app=leetcode id=15 lang=python3
#
# [15] 3Sum
#
# @lc code=start
class Solution:
def threeSum(self, nums: List[int]) -> List[List[int]]:
# @lc code=end
[15] 3Sum
https://leetcode.com/problems/3sum/description/
Tags: algorithms adobe amazon bloomberg facebook microsoft array two-pointers
Langs: c cpp csharp golang java javascript kotlin php python python3 ruby rust scala swift typescript
* algorithms
* Medium (25.90%)
* Likes: 8105
* Dislikes: 881
* Total Accepted: 1M
* Total Submissions: 3.9M
* Testcase Example: '[-1,0,1,2,-1,-4]'
<p>Given an array <code>nums</code> of <em>n</em> integers, are there elements <em>a</em>, <em>b</em>, <em>c</em> in <code>nums</code> such that <em>a</em> + <em>b</em> + <em>c</em> = 0? Find all unique triplets in the array which gives the sum of zero.</p>
<p>Notice that the solution set must not contain duplicate triplets.</p>
<p> </p>
<p><strong>Example 1:</strong></p>
<pre><strong>Input:</strong> nums = [-1,0,1,2,-1,-4]
<strong>Output:</strong> [[-1,-1,2],[-1,0,1]]
</pre><p><strong>Example 2:</strong></p>
<pre><strong>Input:</strong> nums = []
<strong>Output:</strong> []
</pre><p><strong>Example 3:</strong></p>
<pre><strong>Input:</strong> nums = [0]
<strong>Output:</strong> []
</pre>
<p> </p>
<p><strong>Constraints:</strong></p>
<ul>
<li><code>0 <= nums.length <= 3000</code></li>
<li><code>-10<sup>5</sup> <= nums[i] <= 10<sup>5</sup></code></li>
</ul>
🐛 Bug Report
when I click debug, an error comes on console says no matches found Also system unable to import these files "from python3problem15 import * " I'm unable to debug in python OS - MAC OSX
Extension Output
Paste here the LeetCode extension log from output channel.