Interviewer ask me to solve some permutation related problems. 1) Algorithm to get Index of a permutation when all permutations arranged in lexicographical order and its complexity
Programmer Intern Interview Questions
715,695 programmer intern interview questions shared by candidates
You have a 64bit interger counter set to 0. How long it will take to overflow the counter given that you are incrementing it at 4Ghz speed.
integer partiontioing given N (a integer) how many ways you can write as N summation of other numbers 5 = 1+ 2 +2 = 2+ 2 + 1 = 1 + 3 +1 = 1 + 4 etc.. write C code to print every combination
Given an unsorted array of integers, find first two numbers in the array that equal a given sum.
Given a page size and a number, align the number with the nearest page. (Note: This was a phone interview question. The interviewer and I used an online document to share ideas about this problem.
Given an array, print the largest subarray that has elements in an increasing order
print out all prime numbers in a given string. abc2134kd31 -> 2, 13, 3, 3
Given a string, remove all the duplicate characters (not necessarily consecutive)
Implement the "see and tell" algorithm with a given seed number x and a number of iterations y. Output the result on iteration y
Given a sorted array, write a program to decide if two elements sum up to a third.
Viewing 221 - 230 interview questions