top of page
Search
3 Sum - InterviewBit Solution
Given an array S of n integers, find three integers in S such that the sum is closest to a given number, target.
Single Number II - InterviewBit Solution
Given an array of integers, every element appears thrice except for one which occurs once.
Find that element which does not appear thrice.
Single Number - InterviewBit Solution
Given an array of integers A, every element appears twice except for one. Find that single one.
NOTE: Your algorithm should have a linear
Palindromic Binary Representation InterviewBit Solution
Given an integer A find the Ath number whose binary representation is a palindrome.
NOTE:
Consider the 1st number whose binary representat
Count Total Set Bits - InterviewBit Solution
Given a positive integer A, the task is to count the total number of set bits in the binary representation of all the numbers from 1 to A.
Divide Integers InterviewBit Solution
Divide two integers without using multiplication, division and mod operator.
Return the floor of the result of the division.
Reverse Bits InterviewBit Solution
Reverse the bits of a 32-bit unsigned integer A. To solve this problem first find the positions of set bits in the original number then
bottom of page