Fixed a spelling issue

This commit is contained in:
Wilson Strasilla 2024-10-17 15:16:28 -07:00
parent c64f65f6f0
commit d11acec5f3

View File

@ -19,7 +19,7 @@ def min_window(search_str: str, target_letters: str) -> str:
in search_str.
Space complexity: O(search_len) ->
The primary contributer to additional space is the building of a
The primary contributor to additional space is the building of a
dictionary using the search string.
"""