From 5c0a5e24268bd153ca164557d33a9485bfabd304 Mon Sep 17 00:00:00 2001 From: Aboody_01 <91767628+Abdullahi-abdiaziz@users.noreply.github.com> Date: Thu, 17 Oct 2024 17:15:59 +0300 Subject: [PATCH] added an article link about linear search at DSA Roadmap (#7513) --- .../content/106-search-algorithms/100-linear-search.md | 1 + 1 file changed, 1 insertion(+) diff --git a/src/data/roadmaps/datastructures-and-algorithms/content/106-search-algorithms/100-linear-search.md b/src/data/roadmaps/datastructures-and-algorithms/content/106-search-algorithms/100-linear-search.md index 374916f6a..195d5e690 100644 --- a/src/data/roadmaps/datastructures-and-algorithms/content/106-search-algorithms/100-linear-search.md +++ b/src/data/roadmaps/datastructures-and-algorithms/content/106-search-algorithms/100-linear-search.md @@ -5,4 +5,5 @@ Linear search is one of the simplest search algorithms. In this method, every el Learn more from the following resources: - [@article@DSA Linear Search - W3Schools](https://www.w3schools.com/dsa/dsa_algo_linearsearch.php) +- [@article@Linear Search - GeeksForGeeks](https://www.geeksforgeeks.org/linear-search/) - [@video@Learn Linear Search in 3 minutes](https://www.youtube.com/watch?v=246V51AWwZM)