Tagged Questions
The brainteaser tag has no wiki summary.
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.
8
votes
3answers
124 views
Algorithm for re-arranging a sequence of weights
I have a number of items in an array, each one associated to a certain weight.
There is a business rule saying that no two adjacent items cannot have a total weight of more than a certain value, let's ...
8
votes
6answers
777 views
How to go about formatting 1200 to 1.2k in java
I'd like to format following numbers into the numbers next to them with java:
1000 to 1k
5821 to 5.8k
10500 to 10k
101800 to 101k
2000000 to 2m
7800000 to 7.8m
92150000 to 92m
123200000 to 123m
The ...
8
votes
5answers
1k views
Using Static Constructor (Jon Skeet Brainteaser)
As a relative newbie I try to read as much as I can about a particular subject and test/write as much code as I can. I was looking at one of Jons Brainteasers (question #2) and my output was ...
7
votes
5answers
7k views
Javascript callback functions and recursion
This is kind of a brainteaser question, since the code works perfectly fine as-is, it just irritates my aesthetic sense ever so slightly. I'm turning to Stack Overflow because my own brain is failing ...
4
votes
2answers
137 views
largest possible rectangle of letters
Write a program to find the largest possible rectangle of letters such that every row forms a word (left to right) and every column forms a word (top to bottom).
I found this interesting ...
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, ...
4
votes
5answers
448 views
Algorithm for seating groups of people?
I'm interested in writing an application that can determine how to seat groups of 2-10 people at tables that can hold 10 people. There will probably be about 15 tables and 140 people total. I don't ...
4
votes
1answer
377 views
convert a number to the shortest possible character string while retaining uniqueness
I have a list of digits number, say "123456", and I need to map it to a string, any string. The only constraint on the map functions are:
each list of digits number must map to a unique character ...
3
votes
4answers
267 views
Sorting algorithm problem
Here's a brain teaser that's been on my mind for a few days.
We have a sequence S of n elements. Each element is an integer in the range [0, n^2-1]. Describe a simple method for sorting S in O(n) ...
3
votes
1answer
280 views
Why 10675199.02:48:05.4775807 TimeSpan Maximum for CompilationSection?
I was looking at the metadata for System.Web.Configuration.CompilationSection, and noticed the following attribute on the TimeSpan BatchTimeout property:
[TimeSpanValidator(MinValueString = ...
2
votes
1answer
122 views
How can use test for a given sum in all combinations of multiple sets ? [4clojure.com]
Im working on a problem from the 4clojure website (http://www.4clojure.com/problem/131)
What kind of "for" statement might I add to combinatorially check each of these sets for a subset of items ...
2
votes
3answers
411 views
C++ brain teaser
I recently refactored code like this (MyClass to MyClassR).
#include <iostream>
class SomeMember
{
public:
double m_value;
SomeMember() : m_value(0) {}
SomeMember(int a) : m_value(a) {}
...
2
votes
3answers
1k views
T-SQL query to flag repeat records
I have a table that will have 500,000+ records.
Each record has a LineNumber field which is not unique and not part of the primary key.
Each record has a CreatedOn field.
I need to update all ...
2
votes
3answers
567 views
MySQL Advanced Query Brainteaser
I've been asked to create a financial report, which needs to give a total commission rate between two dates for several 'referrers'. That's the easy part.
The difficult part is that the commission ...
1
vote
1answer
169 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 ...
1
vote
0answers
72 views
Convert float[c][f][a][b][d][e] to float[a*b*c*d*e*f] without using buffer
Briefly
I was working on a program that involved OpenCL interop, it required specific memory layout. The problem though didn't concern OpenCL, it was more like a theoretical problem that thrown me ...
1
vote
3answers
190 views
Javascript Brainteaser - Reverse Number Determining
Lets say I have a list of numbers in the following form(Ignore the | they are there for formating help).
00|00|xx
00|xx|00
xx|00|00
etc.
Rules: XX can be any number between 1 and 50. No XX values ...
1
vote
2answers
65 views
MS Access 2003: User was able to enter an invalid value; how?
I have a strange phenomen I can't explain nor reproduce and I'm hoping you have an idea how it was possible for the user to enter an invalid value.
I have an Access-MDB with a form containing an edit ...
1
vote
9answers
137 views
Code Brain “Teaser” — but not really
I'm just curious to see what you guys think about this. I heard a bunch of answers passed around the office and I want to see if you guys can have possibly a better one.
Question:
You have two ...
1
vote
4answers
1k views
Java collections brain teasers
Java collections are invaluable tool in exchanging data between database and service layer. We have various cases of a HashMap, ArrayList, a HashMap of arraylists etc.
I'm looking for programming ...
0
votes
2answers
250 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
188 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 ...
0
votes
0answers
54 views
Join and cache in symfony
hy,
I've a small project in symfony and i get a strang thing here:
I've 2 table "BoutiqueProducts" and "BoutiqueCategories"
in my BoutiqueCategorieTable class, I've create 2functions:
public ...
0
votes
4answers
615 views
Dynamic javascript select dropdown
This was interesting. In a select dropdown, trying not to use jQuery (with the exception of easing some of my pain on recreation), I ran into an issue that doesn't properly let any current browsers ...
0
votes
1answer
145 views
Looking for an algorithm that will show how to fit the most boxes in a container
I've been interested in writing an application that will show how to fit boxes (of random dimensions) in a container so there is as little space as possible left. A real life example would be ...
0
votes
3answers
594 views
C# /Linq Yet another Brain Teaser
Friends, there is yet another scenario to solve. I am working it out without applying Linq.But I hope it is good opportunity for me to learn Linq if you share your code in Linq.
It is know as FLAMES ...
-1
votes
1answer
40 views
Repairing damaged bits using parity data
Here is a brainteaser!
Let us say we have 64 bytes, each byte is eight bits plus one parity bit
Let us say there is a further LRC check byte (formed by bit wise XOR ing all 64 bytes)
So we can ...
-2
votes
1answer
495 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 ...
-5
votes
1answer
69 views
C++ brainteaser [closed]
int foo(int a,int b)
{
cout << a << " " << b << endl;
return a*b;
}
int main(int argc,const char **argv)
{
int x=0;
foo(++x,++x);
return 0;
}
What should ...