wangtao0101 / vscode-debug-leetcode

vscode debug extension for leetcode, can work with vscode-leetcode
https://marketplace.visualstudio.com/items?itemName=wangtao0101.debug-leetcode
MIT License
49 stars 10 forks source link

Timed out waiting for launcher to connect -- Please Need Help #8

Open kat1zzz opened 4 years ago

kat1zzz commented 4 years ago

🐛 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

Screenshot 2020-10-02 at 9 59 18 AM

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>&nbsp;</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>&nbsp;</p>
<p><strong>Constraints:</strong></p>

<ul>
    <li><code>0 &lt;= nums.length &lt;= 3000</code></li>
    <li><code>-10<sup>5</sup> &lt;= nums[i] &lt;= 10<sup>5</sup></code></li>
</ul>
ZeQing-Liu commented 3 years ago

Select Default Shell -> bash

duhd1993 commented 3 years ago

I also run into this problem. It's not compatible with zsh. but it seems you only need to enclose it with a quote