diff --git a/Search Algorithms/Linear Search.md b/Search Algorithms/Linear Search.md index 3b5f0c77..92a1a041 100644 --- a/Search Algorithms/Linear Search.md +++ b/Search Algorithms/Linear Search.md @@ -36,7 +36,7 @@ Linear Search should return -1 as 6 is not present in the array #### Code Implementation Links - [Java](https://github.com/TheAlgorithms/Java/blob/master/Searches/LinearSearch.java) -- [C++](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/Linear%20Search.cpp) +- [C++](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/Search/Linear%20Search.cpp) - [Python](https://github.com/TheAlgorithms/Python/blob/master/searches/linear_search.py) #### Video Explanation