vscode-debug-leetcode
vscode-debug-leetcode copied to clipboard
vscode debug extension for leetcode, can work with vscode-leetcode
LeetCode Debug option is not showing up
## 🐛 Bug Report I noticed that the Debug option in leetcode is not showing up. Either it is not refreshing or not showing up .I using Macbook Pro ##...
Change leetcode debug for Typescript Problems
## 🐛 Bug Report A typescript debugger is required ## To Reproduce Steps to reproduce the behavior. ## Expected behavior A clear and concise description of what you expected to...
debug input 怎么向函数传入多个参数
## 🚀 Feature Proposal 如题
C++ Debugger Error
## 🐛 Bug Report I can't seem to get the c++ debugger to work. Terminal does not show any errors but the debugger does not stop on any of the...
## 🐛 Bug Report  It can not identify my debug input correctly
无法打开源文件 "commoncppproblem1.h"
## 🐛 Bug Report 无法打开源文件 "commoncppproblem1.h" ## Your Environment - _os_: Windows 10 - _extension settings_: - _nodejs version_: - _vscode version_: - _extension version_:
剑指offer
## 🚀 Feature Proposal A clear and concise description of what the feature is. 什么时候支持下《剑指offer》 ## Motivation Please outline the motivation for the proposal. ## Contribution Please describe the solution...
MacOS 11.4 M1 Debug ERROR
## Debug ERROR ERROR: Unable to start debugging. Unexpected LLDB output from command "-exec-run". process exited with status -1 (attach failed ((os/kern) invalid argument)) ## Using CodeLLDB that comes with...
Can not debug locked problem
## 🐛 Bug Report Can not debug locked problem ## To Reproduce In VS Code, search and select a locked problem, e.g. 305  ## Expected behavior There are shortcuts...
在测试样例包含方法调用的C++题目中报错:Input parameters is not match the problem!
在146 155 352 355 380 381 382 460 528 641 705 706 707 710 715 981等题中(不完全统计),使用C++语言,点击Debug后出现报错:Input parameters is not match the problem! 报错可以追溯到这一行: https://github.com/wangtao0101/vscode-debug-leetcode/blob/bbdbb9aaa106a6a74311a83910e7ac3b13453ced/src/debug/executor/cppExecutor.ts#L103 原因是problemType.ts中,对方法调用这类测试样例输入在paramTypes中没有写出对应的类型,而从testCase中利用\\n分割出的params中包含了方法调用的测试输入,导致cppExecutor.ts中params.length==paramsType.length+1。 另外,报错信息存在英文语法错误,可以改为: > The input parameters...