adding notes about double quote removal logic needs to be used twice

This commit is contained in:
Jidong Xiao
2024-01-09 20:01:43 -05:00
parent fde3079d0e
commit 3ca62632fd

View File

@@ -126,7 +126,9 @@ To deal with this problem, you need to remove double quotes from the arguments.
} }
``` ```
Note that the above double quote removal logic wouldn't do anything if the argument doesn't contain a double quote. This means including the double quote removal logic in your code should not affect how you run your program locally on your own computer. You may need to include this double-quote-removal logic twice in your program so as to remove the openning double quote and then the closing double quote.
Note that the above double-quote-removal logic wouldn't do anything if the argument doesn't contain a double quote. This means including the double-quote-removal logic in your code should not affect how you run your program locally on your own computer.
## Submission Details ## Submission Details