- Find k-th element from the end of the singlylinked list in single pass?
Software Engineers Interview Questions
420,352 software engineers interview questions shared by candidates
Given 2 files, each line in the files is considered an entry. Print the entries that are duplicated in both files such that the number of repeated entries are minumal. Example: File 1: aaa aaa bbb bbb bbb ccc File 2: aaa aaa aaa bbb bbb result: aaa aaa bbb bbb
Given an array of integers, all but one of which appears an even number of times, find the one integer which appears an odd number of times.
Given two linked lists, find out IF they intersect.
Find the max ;length palindrome in an input string.
There is an array of numbers, containing the integers 1-n, how can you find the sum of the numbers in that array?
Given array of integers, find the first pair add up to 10. Analize your solution.
How many balls can u place into a box out of 25 balls.Not mentioned anthing more than this...how funny is this :)
Given a tree, serialize it into a string that can later be parsed and used to rebuild the original tree.
Design a function to reverse the order of words in a string - "This is a string" -> "string a is This"
Viewing 1951 - 1960 interview questions