summaryrefslogtreecommitdiff
path: root/01-07.md
diff options
context:
space:
mode:
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)