Tagged Questions

22
votes
5answers
1k views

How to find a checksum of the same checksum? (job-interview question)

Devise a simple algorithm which creates a file which contains nothing but its own checksum. Let's say it is CRC-32, so this file must be 4 bytes long.
4
votes
1answer
162 views

How to put all zeros in a integer to the right without external storage

How can we shift all the zeros in an integer to the right. For example, int x = 560106 , after shifting, x = 561600. We cannot use another variable and String manipulation is not a good answer. Also, ...
1
vote
1answer
166 views

how to distribute n red and m blue balls in some containers to maximize probability of random picking a red one from them?

This is an interview question. Given n red balls and m blue balls and some containers, how would you distribute those balls among the containers such that the probability of picking a red ball is ...
0
votes
2answers
248 views

Fill rectangle with small squares

Given a rectangle with width and height, fill it with n squares (n is integer, also given) with least wasting area. Return the size of square.
0
votes
1answer
185 views

Interview Torture Question: Detect the Majority Element [closed]

Possible Duplicate: Linear time majority algorithm? You are given an array of N integers. One integer in the array fills a strict majority of the array positions. That is, it is repeated at ...
-2
votes
1answer
494 views

Interview question: the duck and the fox [closed]

Brainteaser i have been given while competing for C++ programmer vacancy. Assume there is the pond of perfect circle shape. Right in the center of this pond the duck sits on a water. And right at the ...