Skip to content

Commit d448a4e

Browse files
committed
2 parents 0ceeb2c + 43993fb commit d448a4e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

strings/min_window_substring.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def min_window(search_str: str, target_letters: str) -> str:
3232

3333
# Return if not possible due to string lengths.
3434
if search_len < target_count:
35-
return ''
35+
return ""
3636

3737
# Build dictionary with counts for each letter in target_letters
3838
char_dict = {}
@@ -86,4 +86,4 @@ def min_window(search_str: str, target_letters: str) -> str:
8686
if exists:
8787
return search_str[min_window[0] : min_window[1]]
8888
else:
89-
return ''
89+
return ""

0 commit comments

Comments
 (0)