diff --git a/exercises/practice/change/.approaches/config.json b/exercises/practice/change/.approaches/config.json index 46b784e67..c24280ab1 100644 --- a/exercises/practice/change/.approaches/config.json +++ b/exercises/practice/change/.approaches/config.json @@ -2,6 +2,9 @@ "introduction": { "authors": [ "jagdish-15" + ], + "contributors": [ + "kahgoh" ] }, "approaches": [ diff --git a/exercises/practice/change/.approaches/introduction.md b/exercises/practice/change/.approaches/introduction.md index 60f5e2937..de92106d8 100644 --- a/exercises/practice/change/.approaches/introduction.md +++ b/exercises/practice/change/.approaches/introduction.md @@ -56,6 +56,8 @@ class ChangeCalculator { } ``` +For a detailed look at the code and logic, see the full explanation in the [Recursive Approach][approach-recursive]. + ## Approach: Dynamic Programming - Top down ```java