From 521e0a9bbd8f4e2ff5bd29840a3d7305fd07351c Mon Sep 17 00:00:00 2001 From: Andy Chen <25174488+KsRyY@users.noreply.github.com> Date: Mon, 21 Dec 2020 03:00:44 +0800 Subject: [PATCH 1/4] Remove a extra space (#291) From fa1f930c99bf869e0074515f981cd018da185412 Mon Sep 17 00:00:00 2001 From: Brandon Villa Date: Sun, 20 Dec 2020 13:05:18 -0600 Subject: [PATCH 2/4] Add missing step (#345) --- src/data-structures/linked-list/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/src/data-structures/linked-list/README.md b/src/data-structures/linked-list/README.md index 2b8a7507..f357889d 100644 --- a/src/data-structures/linked-list/README.md +++ b/src/data-structures/linked-list/README.md @@ -102,6 +102,7 @@ Remove(head, value) if n.next != ø if n.next = tail tail ← n + tail.next = null end if n.next ← n.next.next return true From f617569760979d540f795e41f039e93204c91af0 Mon Sep 17 00:00:00 2001 From: Go Date: Mon, 21 Dec 2020 04:06:36 +0900 Subject: [PATCH 3/4] fix typo (#350) --- src/algorithms/string/levenshtein-distance/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/algorithms/string/levenshtein-distance/README.md b/src/algorithms/string/levenshtein-distance/README.md index 4d4078b8..8876d679 100644 --- a/src/algorithms/string/levenshtein-distance/README.md +++ b/src/algorithms/string/levenshtein-distance/README.md @@ -50,7 +50,7 @@ to assist natural language translation based on translation memory. Let’s take a simple example of finding minimum edit distance between strings `ME` and `MY`. Intuitively you already know that minimum edit distance -here is `1` operation and this operation. And it is replacing `E` with `Y`. But +here is `1` operation, which is replacing `E` with `Y`. But let’s try to formalize it in a form of the algorithm in order to be able to do more complex examples like transforming `Saturday` into `Sunday`. From e07620359090a8f372fe2b4297bb9e806d5d0343 Mon Sep 17 00:00:00 2001 From: Yura Sherman Date: Sun, 20 Dec 2020 21:09:09 +0200 Subject: [PATCH 4/4] Fix a grammar mistake (#396) --- src/data-structures/bloom-filter/README.ru-RU.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data-structures/bloom-filter/README.ru-RU.md b/src/data-structures/bloom-filter/README.ru-RU.md index 38830f9e..b5c19c06 100644 --- a/src/data-structures/bloom-filter/README.ru-RU.md +++ b/src/data-structures/bloom-filter/README.ru-RU.md @@ -19,7 +19,7 @@ срабатываний фильтра. Вот пример Блум фильтра, представляющего набор `{x, y, z}`. Цветные стрелки показывают позиции в битовом массиве, -которым привязан каждый элемент набора. Элемент `w` не в набора `{x, y, z}`, потому что он привязан к позиции в битовом +которым привязан каждый элемент набора. Элемент `w` не в наборе `{x, y, z}`, потому что он привязан к позиции в битовом массиве, равной `0`. Для этой формы , `m = 18`, а `k = 3`. Фильтр Блума представляет собой битовый массив из `m` бит. Изначально, когда структура данных хранит пустое множество, все