top of page
Search
Palindrome Integer InterviewBit Solution
Determine whether an integer is a palindrome. Do this without extra space.
A palindrome integer is an integer x for which reverse(x) = x whe
Grid Unique Paths InterviewBit Solution
A robot is located at the top-left corner of an A x B grid.
The robot can only move either down or right at any point in time. The robot is
City Tour InterviewBit Solution
There are A cities numbered from 1 to A. You have already visited M cities, the indices of which are given in an array B of M integers.
Excel Column Title InterviewBit Solution
Given a positive integer A, return its corresponding column title as appear in an Excel sheet.
Excel Column Number InterviewBit Solution
Given a column title A as appears in an Excel sheet, return its corresponding column number.
Rearrange Array InterviewBit Solution
Rearrange a given array so that Arr[i] becomes Arr[Arr[i]] with O(1) extra space.
Numbers of length N and value less than K InterviewBit Solution
Given a set of digits (A) in sorted order, find how many numbers of length B are possible whose value is less than number C.
Power Of Two Integers Interviewbit Solution
Given a positive integer which fits in a 32 bit signed integer, find if it can be expressed as A^P where P > 1 and A > 0. A and P both shoul
FizzBuzz
Given a positive integer A, return an array of strings with all the integers from 1 to N.
But for multiples of 3 the array should have
Sum of pairwise Hamming Distance InterviewBit Solution
Hamming distance between two non-negative integers is defined as the number of positions at which the corresponding bits are different.
bottom of page