summaryrefslogtreecommitdiff
path: root/01-07.md
diff options
context:
space:
mode:
authorlshprung <lshprung@yahoo.com>2021-01-12 10:47:12 -0800
committerlshprung <lshprung@yahoo.com>2021-01-12 10:47:12 -0800
commit1a62445e14debcbdc539bebe6ce46e5282c9cee0 (patch)
tree4f52508a42d46015881806b17b29077b1fd09495 /01-07.md
parent3836ff9bb3360242fd27c58ad83c73ea7356f3bb (diff)
Post-class 01/12
Diffstat (limited to '01-07.md')
-rw-r--r--01-07.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/01-07.md b/01-07.md
index a10e53c..cfe82ee 100644
--- a/01-07.md
+++ b/01-07.md
@@ -258,3 +258,6 @@ bool search(vector<int> arr, int item){
//if vector<int> arr{1, 2, 3, 4, 5}
search(arr, 1); //O(1) -> Best Case
search(arr, 5); //O(N) -> Worst Case
+```
+
+[01/12 ->](01-12.md)