vscode-leetcode
vscode-leetcode copied to clipboard
Unable input string as test case use file
🐛 Bug Report
Platform: Windows One single line like ""abcabcbb"" can work. but Multiline cause error, input like follow: case 1: ""abcabcbb"" ""abcabcbb""
Runtime Error Error "abcabcbb"" is not a valid value of type string "abcabcbb"" is not a valid value of type string Your Input "abcabcbb"" "abcabcbb"
case 2 "\"XX\"" "\"bacdgf\""
Runtime Error Error \XX\" is not a valid value of type string \XX\" is not a valid value of type string Your Input \XX\" "\bacdgf\
I believe you do something like this ["abcabcbb"\n"abcabcbb" ], make sure there is a space at the end, and without the []
I believe you do something like this ["abcabcbb"\n"abcabcbb" ], make sure there is a space at the end, and without the []
"make sure there is a space at the end" this thing is Not enough grace
I believe you do something like this ["abcabcbb"\n"abcabcbb" ], make sure there is a space at the end, and without the []
if I want to input ---> " " add space at the end is not work
“ ” is not a valid value of type string
What I do know is
"abc"\n "abc"
with a space in the beggining and space before the breakline