From 3ca62632fd8b8ec5acf5eee7f2e20024a3bd6409 Mon Sep 17 00:00:00 2001 From: Jidong Xiao Date: Tue, 9 Jan 2024 20:01:43 -0500 Subject: [PATCH] adding notes about double quote removal logic needs to be used twice --- hws/01_spotify_playlists/README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/hws/01_spotify_playlists/README.md b/hws/01_spotify_playlists/README.md index 7623e24..862ca99 100644 --- a/hws/01_spotify_playlists/README.md +++ b/hws/01_spotify_playlists/README.md @@ -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