From b471dda18c23253a12ffa542a1c1f770e7abde47 Mon Sep 17 00:00:00 2001 From: Yudong Jin Date: Wed, 4 Dec 2024 18:01:57 +0800 Subject: [PATCH] Update replace_linear_by_hashing.md --- en/docs/chapter_searching/replace_linear_by_hashing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/docs/chapter_searching/replace_linear_by_hashing.md b/en/docs/chapter_searching/replace_linear_by_hashing.md index 5b7fbc741..b5a905264 100644 --- a/en/docs/chapter_searching/replace_linear_by_hashing.md +++ b/en/docs/chapter_searching/replace_linear_by_hashing.md @@ -1,6 +1,6 @@ # Hash optimization strategies -In algorithm problems, **we often reduce an algorithm's time complexity by replacing a linear search with a hash-based search**. Let's use an algorithm problem to deepen the understanding. +In algorithm problems, **we often reduce the time complexity of an algorithm by replacing a linear search with a hash-based search**. Let's use an algorithm problem to deepen the understanding. !!! question