Open doutv opened 4 years ago
I then find a similar problem. Since gdb doesn't support Chinese character in path and filename, I can't debug the .cpp file.
I think it's better to make the filename in English only, but I don't know how to do it when I am using Leetcode-cn. Can the extension generate a filename like 673FindNumberOfLIS.cpp
? Adding the question id and class name together.
Yes, I encountered the same question.
Is there a way to solve this problem? I got the same question...
🐛 Bug Report
This is the default setting of filename.
"filename": "${id}.${kebab-case-name}.${ext}"
It will cause some problems because of the dot
.
betweenid
andkebab-case-name
.Thus, I think it's better to remove
.
in default setting."filename": "${id}${kebab-case-name}.${ext}"