Sorted Permutation Rank with Repeats InterviewBit SolutionGiven a string, find the rank of the string amongst its permutations sorted lexicographically. Note that the characters might be repeated. I
Largest Coprime Divisor InterviewBit SolutionYou are given two positive numbers A and B. Find the maximum valued integer X such that: X divides A i.e. A % X = 0 and gcd(X,B) = 1.
Sorted Permutation Rank InterviewBit SolutionGiven a string, find the rank of the string amongst its permutations sorted lexicographically. Assume that no characters are repeated.
Trailing Zeros in Factorial InterviewBit SolutionGiven an integer A, return the number of trailing zeroes in A!.
Greatest Common Divisor InterviewBit SolutionGiven 2 non-negative integers m and n, find gcd(m, n) GCD of 2 integers m and n is defined as the greatest integer g such that g is a diviso
Palindrome Integer InterviewBit SolutionDetermine 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 SolutionA 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 SolutionThere 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 SolutionGiven a positive integer A, return its corresponding column title as appear in an Excel sheet.