Skip to content

Latest commit

 

History

History
44 lines (22 loc) · 925 Bytes

README.md

File metadata and controls

44 lines (22 loc) · 925 Bytes

Searching Algorithms

  1. Linear search

  2. Binary search

Sorting Algorithms

  1. Bubble Sort

  2. Insertion Sort

  3. Selection Sort

Array Questions

Basic

  1. Largest Element in an Array

  2. Second Largest Element in an Array without sorting

  3. Check if the array is sorted

  4. Remove duplicates from Sorted array

  5. Left Rotate an array by one place

  6. Left rotate an array by D places

  7. Move Zeros to end

  8. Linear Search

  9. Find the Union and intersection of two sorted arrays

  10. Find missing number in an array

  11. Maximum Consecutive Ones

Patterns

Recursion