aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/lcs
diff options
context:
space:
mode:
authornosyrev <nosyrev@yandex-team.ru>2022-02-10 16:49:26 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:49:26 +0300
commite1d79fa17b770f65538cb8c3d9a5a59ebb0da04b (patch)
tree7996031bd3e7863aa99f219072f0f35f3acf5ce0 /library/cpp/lcs
parentb3c1a086292c74ed88830693f15a96ddeadc6b9a (diff)
downloadydb-e1d79fa17b770f65538cb8c3d9a5a59ebb0da04b.tar.gz
Restoring authorship annotation for <nosyrev@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/lcs')
-rw-r--r--library/cpp/lcs/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/cpp/lcs/README.md b/library/cpp/lcs/README.md
index 7ed3d946d6..c3b77d1820 100644
--- a/library/cpp/lcs/README.md
+++ b/library/cpp/lcs/README.md
@@ -28,6 +28,6 @@ The idea of the algorithm for constructing DS:
- Going along the original sequence, for the current member x in the list of its DS we find the leftmost, such that its last term is not less than x.
- If there is one, then add x to the end.
- If not, add a new DS consisting of x to the DS list.
-
+
It can be shown that the DS list constructed this way will be SC.