Sorting and Searching

LeetCode solutions for sorting and searching problems

Home / LeetCode Solutions / Sorting and Searching

Sorting and Searching Problems

This section contains solutions to LeetCode problems involving sorting algorithms, binary search, and related techniques.

Binary Search (Problem 704)

Implement binary search on a sorted array.

View on GitHub
Python Easy Binary Search

Merge Intervals (Problem 56)

Merge overlapping intervals.

View on GitHub
Python Medium Sorting Arrays

Search in Rotated Sorted Array (Problem 33)

Search for a target value in a rotated sorted array.

View on GitHub
Python