From e1ae0430bc1668f32be99d26e0213d5186db0b64 Mon Sep 17 00:00:00 2001
From: amdev <56517440+thereisnodeveloper@users.noreply.github.com>
Date: Sun, 22 Sep 2024 09:20:47 -0400
Subject: [PATCH 1/2] update assignment #1's instructions
---
javascript/computer_science/recursive_methods.md | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/javascript/computer_science/recursive_methods.md b/javascript/computer_science/recursive_methods.md
index 5e4d2d1243f..79fe4b8c85b 100644
--- a/javascript/computer_science/recursive_methods.md
+++ b/javascript/computer_science/recursive_methods.md
@@ -25,7 +25,8 @@ This section contains a general overview of topics that you will learn in this l
- 1. Read this [intro to recursion](https://javascript.info/recursion).
+ 1. Read this [intro to recursion](https://javascript.info/recursion). You do
+ *not* need to complete the exercises at the end of the article.
1. Watch this [explanation of recursion by Web Dev Simplified](https://www.youtube.com/watch?v=6oDQaB2one8) and this additional [example of recursion by DevSage](https://youtu.be/LteNqj4DFD8?t=340).
1. Watch this [Video on Recursion](https://www.youtube.com/watch?v=mz6tAJMVmfM) from CS50.
1. Read the ["Implementation Issues" section of the wiki article](http://en.wikipedia.org/wiki/Divide_and_conquer_algorithm#Implementation_issues) to get an overview of some of the limitations of recursion.
From 37f19a07d2e2679950e6d9718a1a060884ca18ac Mon Sep 17 00:00:00 2001
From: amdev <56517440+thereisnodeveloper@users.noreply.github.com>
Date: Mon, 23 Sep 2024 12:10:33 -0400
Subject: [PATCH 2/2] remove linebreak from Assignment #1
---
javascript/computer_science/recursive_methods.md | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/javascript/computer_science/recursive_methods.md b/javascript/computer_science/recursive_methods.md
index 79fe4b8c85b..766d15b850f 100644
--- a/javascript/computer_science/recursive_methods.md
+++ b/javascript/computer_science/recursive_methods.md
@@ -25,8 +25,7 @@ This section contains a general overview of topics that you will learn in this l
- 1. Read this [intro to recursion](https://javascript.info/recursion). You do
- *not* need to complete the exercises at the end of the article.
+ 1. Read this [intro to recursion](https://javascript.info/recursion). You do *not* need to complete the exercises at the end of the article.
1. Watch this [explanation of recursion by Web Dev Simplified](https://www.youtube.com/watch?v=6oDQaB2one8) and this additional [example of recursion by DevSage](https://youtu.be/LteNqj4DFD8?t=340).
1. Watch this [Video on Recursion](https://www.youtube.com/watch?v=mz6tAJMVmfM) from CS50.
1. Read the ["Implementation Issues" section of the wiki article](http://en.wikipedia.org/wiki/Divide_and_conquer_algorithm#Implementation_issues) to get an overview of some of the limitations of recursion.