summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Technology/6.0001 Introduction to Computer Science and Programming in Python.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/Technology/6.0001 Introduction to Computer Science and Programming in Python.md b/Technology/6.0001 Introduction to Computer Science and Programming in Python.md
index d327cc0..3f4ce70 100644
--- a/Technology/6.0001 Introduction to Computer Science and Programming in Python.md
+++ b/Technology/6.0001 Introduction to Computer Science and Programming in Python.md
@@ -148,3 +148,10 @@ range(start,stop,increment)
PEP8 - https://peps.python.org/pep-0008/
# Lecture 3 - String Manipulation, Guess and Check, Approximations, Bisection
+
+Algo:
+- Guess and check - exhaustive enumeration
+- Bisection Search - a example of succesive approximation method
+- Approximation - most common: Newton-Raphson Method
+
+# Lecture 4 - Decomposition, Abstraction, and Functions