29
votes
29answers
2k views
Programmer Puzzle: Encoding a chess board state throughout a game.
Not strictly a question, more of a puzzle...
Over the years, I've been involved in a few technical interviews of new employees. Other than asking the standard "do you know X technology" questions, …
7
votes
11answers
246 views
Multithreading Puzzles
I'm trying to come up with some programming puzzles focused on multi-threading. Most of the problems I've been able to come up with, so far, have been pretty domain specific. Does anybody have any …
9
votes
3answers
228 views
N-Queens Problem..How far can we go?
The N-Queens Problem:
This problem states that Given a chess board of size N by N. Find the different permutations in which N queens can be placed on the Board without any one killing each other.
…
2
votes
3answers
253 views
What does this obfuscated Perl code do? [closed]
What does this do?
…
3
votes
4answers
98 views
How to most elegantly iterate through parallel collections in C#?
var a = new Collection<string> {"a", "b", "c"};
var b = new Collection<int> { 1, 2, 3 };
What is the most elegant way to iterate through both yielding a set of results …
3
votes
3answers
102 views
Algorithm for solving the “Unblock Me” puzzles
"Unblock Me" is an iPhone game (screenshot here: http://www.kiragames.com/games/unblockme-free.) I was wondering how would one go about solving this programmatically and what class of algorithms help …
55
votes
67answers
15k views
Programming challenge: can you code a hello world program as a Palindrome?
So the puzzle is to write a hello world program in your language of choice, where the program's source file as a string has to be a palindrome.
To be clear, the output has to be exactly "Hello, …
1
vote
2answers
61 views
Identify file format from header?
I got some files , which has header,
{AD08E961-F492-11d1-B0EA-00AA00683350}2.00:en_US:45015:021
Can you please help me in finding out, from which software it is created.
Only information I have …
78
votes
31answers
7k views
Given a function which produces a random integer in the range 1 to 5, write a function which produces a random integer in the range 1 to 7
what is simple solution
what is effective solution to less minimum memory and(or) cpu speed?
1
vote
5answers
85 views
Ideas on what to do/lecture on for Programming Club in college?
Hey guys,
This semester I started a programming club at my university since we did not have an existing similar group with the idea that it would be a place to hang out for computer science majors …
9
votes
2answers
108 views
C Puzzle - play with types
Please check the below program.
#include <stdio.h>
struct st
{
int a ;
}
fn ()
{
struct st obj ;
obj.a = 10 ;
return obj ;
}
int main()
{
struct st obj = fn() ;
printf ("%d", obj.a) …
4
votes
2answers
187 views
Prolog - member predicate one-liner
Interview question!
This is how you normally define the member relation in Prolog:
member(X, [X|_]). % member(X, [Head|Tail]) is true if X = Head
% that is, if X is …
1
vote
1answer
89 views
Binary search in C with recursive function accepting only length
I am solving "Programming Pearls" exercises. 4.11 say:
Write and prove the correctness of a
recursive binary search function in C
or C++ with this declaration:
int binarysearch(DataType …
62
votes
15answers
4k views
How to find list of possible words from a letter matrix [Boggle Solver]
Lately I have been playing a game on my iPhone called Scramble. Some of you may know this game as Boggle. Essentially, when the game starts you get a matrix of letters like so:
F X I E
A M L O
E W B …
0
votes
2answers
107 views
Testing interview question - Find a book in the library [closed]
Possible Duplicate:
Find a book in a huge library (interview question)
(Re-opened with programming tag)
What is your answer for this question?
You are in a very huge library that has no …
