mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-04-10 07:45:54 +00:00
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
This commit is contained in:
parent
85fcd387cc
commit
43993fb763
@ -28,7 +28,7 @@ def min_window(search_str: str, target_letters: str) -> str:
|
|||||||
|
|
||||||
# Return if not possible due to string lengths.
|
# Return if not possible due to string lengths.
|
||||||
if search_len < target_count:
|
if search_len < target_count:
|
||||||
return ''
|
return ""
|
||||||
|
|
||||||
# Build dictionary with counts for each letter in target_letters
|
# Build dictionary with counts for each letter in target_letters
|
||||||
char_dict = {}
|
char_dict = {}
|
||||||
@ -82,4 +82,4 @@ def min_window(search_str: str, target_letters: str) -> str:
|
|||||||
if exists:
|
if exists:
|
||||||
return search_str[min_window[0] : min_window[1]]
|
return search_str[min_window[0] : min_window[1]]
|
||||||
else:
|
else:
|
||||||
return ''
|
return ""
|
||||||
|
Loading…
x
Reference in New Issue
Block a user