📄️ Linear Search
Linear Search is one of the simplest and most intuitive algorithms used to find an element in a list or array. It checks each element sequentially until the desired value is found or the list ends.
📄️ Binary Search
Have you ever looked for a word in a dictionary? You don’t start from the first page — you flip somewhere in the middle, check, and based on what you see, jump left or right. That’s exactly how Binary Search works.