vscode-leetcode-cpp-debug icon indicating copy to clipboard operation
vscode-leetcode-cpp-debug copied to clipboard

Debug support for LeetCode with C++

Results 11 vscode-leetcode-cpp-debug issues
Sort by recently updated
recently updated
newest added

我写好代码后打了断点,启动了leetcode debug,可是vscode报错如下: 请问该如何解决? ![vscode](https://github.com/xavier-cai/vscode-leetcode-cpp-debug/assets/57428207/7ba40c39-17e0-4a59-914b-38615df85067)

![image](https://user-images.githubusercontent.com/35626258/212234492-0ce3d69e-c442-43f1-b0c9-e8b8be7b54d7.png)

Bumps [flat](https://github.com/hughsk/flat) to 5.0.2 and updates ancestor dependency [mocha](https://github.com/mochajs/mocha). These dependencies need to be updated together. Updates `flat` from 4.1.0 to 5.0.2 Commits e5ffd66 Release 5.0.2 fdb79d5 Update dependencies, refresh...

dependencies

Bumps [qs](https://github.com/ljharb/qs) from 6.5.2 to 6.5.3. Changelog Sourced from qs's changelog. 6.5.3 [Fix] parse: ignore __proto__ keys (#428) [Fix] utils.merge: avoid a crash with a null target and a truthy...

dependencies

System: ``` Version: 1.63.2 Commit: 899d46d82c4c95423fb7e10e68eba52050e30ba3 Date: 2021-12-15T09:38:17.605Z Electron: 13.5.2 Chromium: 91.0.4472.164 Node.js: 14.16.0 V8: 9.1.269.39-electron.0 OS: Darwin arm64 21.5.0 ``` Error Output: ```sh ➜ .leetcode cd ~/.leetcode ; /usr/bin/env...

Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. Commits 7efb22a 1.2.6 ef88b93 security notice for additional prototype pollution issue c2b9819 isConstructorOrProto adapted from PR bc8ecee test from prototype pollution PR See full...

dependencies

运行LeetCode Debugger: Start Debugging后只有出现下面的图片情况,并不会弹出输入,请问这是什么情况 ![image](https://user-images.githubusercontent.com/40535813/156014463-e6fec37a-3a0b-4ca0-bdd4-cf0ffcaa7139.png)

我在24題看到singly-linked list 的方法為 ``` /*Definition on Leetcode*/ struct ListNode { int val; ListNode *next; ListNode() : val(0), next(nullptr) {} ListNode(int x) : val(x), next(nullptr) {} ListNode(int x, ListNode *next) :...

When press ctrl+shift+p, select `LeetCode Debugger: Start Debugging` and run, no reaction. It does not generate any files in current directory, I have set `delete temporay files` to false.