Skip to content

Latest commit

 

History

History
41 lines (37 loc) · 5.95 KB

Searching.md

File metadata and controls

41 lines (37 loc) · 5.95 KB

Introduction

This markdown file is specific to LeetCode problems related to array. Problems are divided according to difficulty level.

Difficulty level: Easy

Searching Algorithm Problem Solution
Binary Search 744. Find Smallest Letter Greater Than Target C++
Binary Search 35. Search Insert Position C++
Binary Search 704. Binary Search C++
Binary Search 1346. Check If N and Its Double Exist C++
Binary Search 888. Fair Candy Swap C++
Searching 350. Intersection of Two Arrays II C++, Using map
Binary Search 349. Intersection of Two Arrays C++, Using find
Binary Search 1539. Kth Missing Positive Number C++
Binary Search 367. Valid Perfect Square C++
Binary Search 278. First Bad Version C++
Binary Search 374. Guess Number Higher or Lower C++
Binary Search 69. Sqrt(x) C++
Binary Search 1351. Count Negative Numbers in a Sorted Matrix C++
Binary Search 852. Peak Index in a Mountain Array C++
Binary Search 744. Find Smallest Letter Greater Than Target C++
Binary Search 1351. Count Negative Numbers in a Sorted Matrix C++

Difficulty level: Medium

Searching Algorithm Problem Solution
Binary Search 167. Two Sum II - Input Array Is Sorted C++
Binary Search 540. Single Element in a Sorted Array C++
Binary Search 34. Find First and Last Position of Element in Sorted Array C++
Matrix, Binary Search 74. Search a 2D Matrix C++
Binary Search 162. Find Peak Element C++
Binary Search 33. Search in Rotated Sorted Array C++
Binary Search 81. Search in Rotated Sorted Array II C++
Binary Search 153. Find Minimum in Rotated Sorted Array C++
Binary Search 875. Koko Eating Bananas C++

Difficulty level: Hard

Searching Algorithm Problem Solution
Binary Search 1095. Find in Mountain Array C++