From a15b12e5e2cc2393fda1cf1b95a8f3ea3929eebc Mon Sep 17 00:00:00 2001 From: sunqiuming526 Date: Tue, 3 Mar 2020 21:53:36 -0800 Subject: [PATCH] Add name for the author and the translator --- dynamic_programming/StrategiesForSubsequenceProblem.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dynamic_programming/StrategiesForSubsequenceProblem.md b/dynamic_programming/StrategiesForSubsequenceProblem.md index 37b0596..5570f58 100644 --- a/dynamic_programming/StrategiesForSubsequenceProblem.md +++ b/dynamic_programming/StrategiesForSubsequenceProblem.md @@ -1,5 +1,9 @@ # Problem-Solving Strategies for Subsequence Problem (Dynamic Programming) +**Translator: [sunqiuming526](https://github.com/sunqiuming526)** + +**Author: [labuladong](https://github.com/labuladong)** + Subsequence Problem is one of the most common algorithm problem, which is not easy to figure out. First of all, the subsequence problem itself is more difficult than those for substring and subarray, since the former needs to deal with discontinuous sequence, while the latter two are continuous. It is hard enough to simply enumerate the subsequences, let alone solve related algorithm problems.