From d11acec5f33ade7381aecbf05fd3306c43919304 Mon Sep 17 00:00:00 2001 From: Wilson Strasilla Date: Thu, 17 Oct 2024 15:16:28 -0700 Subject: [PATCH] Fixed a spelling issue --- strings/min_window_substring.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/strings/min_window_substring.py b/strings/min_window_substring.py index c2bdf58ef..f7985654f 100644 --- a/strings/min_window_substring.py +++ b/strings/min_window_substring.py @@ -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. """