Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Implement Binary Search
00:00
5 left

Implement Binary Search

EasyPython

Problem

How would you implement a binary search algorithm?

Given a sorted list of integers and a target value, return the target's index or -1 if it is absent. Implement the search iteratively and return any valid index when duplicate target values exist.

Contract

  • Function: def binary_search(nums, target):
  • Input: a sorted integer list and an integer target
  • Output: an integer index or -1

Constraints

  • 0 <= nums.length <= 10^4
  • -10^9 <= nums[i], target <= 10^9
  • nums is sorted in nondecreasing order

Function Signature

def binary_search(nums, target):
Interviewer

Your question is Implement Binary Search. Start with the requirements in the Question tab.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.
CodePython 3
You need to log in / sign up to run or submit.Ln 2
Run your code to see test output here.