79
votes
31answers
8k 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?
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 …
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, …
42
votes
21answers
4k views
Best algorithm for this interview problem
Given a NxN matrix with 0s and 1s. Set every row that contains a 0 to all 0s and set every column that contains a 0 to all 0s.
For example
1 0 1 1 0
0 1 1 1 0
1 1 1 1 1
1 0 1 1 1
1 1 1 1 1
…
31
votes
9answers
3k views
Solving “Who owns the Zebra” programmatically?
Edit: this puzzle is also known as "Einstein's Riddle"
The Who owns the Zebra is an example of a classic set of puzzles and I bet that most people on Stack Overflow can solve it with pen and paper. …
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, …
22
votes
32answers
3k views
Algorithm to determine if array contains n…n+m?
I saw this question on Reddit, and there were no positive solutions presented, and I thought it would be a perfect question to ask here. This was in a thread about interview questions:
Write a …
16
votes
8answers
561 views
How to optimally solve the flood fill puzzle?
I like playing the puzzle game Flood-It, which can be played online at:
http://floodit.appspot.com/
It's also available as an iGoogle gadget. The aim is to fill the whole board with the least number …
16
votes
7answers
1k views
Riddle: The Square Puzzle
Last couple of days, I have refrained myself from master's studies and have been focusing on this (seemingly simple) puzzle:
There is this 10*10 grid which constitutes a square of 100 available …
15
votes
0answers
1k views
Fun with SQL (games, painting, puzzles) [closed]
If you think SQL is boring or dumb or limited, try this:
SQL Games
Lionel Clarke 3D Maze Game
CraigD - Battleship (MS SQL 2008 GEOGRAPHY and GEOMETRY)
Adam Haines - Tic Tac Toe T-SQL Style
Kevin …
14
votes
38answers
4k views
Programming Riddle: Counting down without subtracting.
Ok, goal by example : a command-line app that does this:
Countdown.exe 7
prints 7 6 5 4 3 2 1
No form of subtracting (including use of the minus sign) or string reverse what so ever is allowed.
…
14
votes
14answers
1k views
What are some good websites for programming puzzles?
Programing puzzles can be a great way to practice your skills and kill time between projects. What sources do you use for programing puzzles?
14
votes
6answers
758 views
Mathematics / Algorithmic Resources: ProjectEuler.net puzzles
I've used brute force for the most part for the ProjectEuler.net problems that I have been able to solve. One thing I'm finding is that, for some of the puzzles, I'm not able to find good resources …
14
votes
12answers
1k views
How to test randomness (case in point - Shuffling)
First off, this question is ripped out from this question. I did it because I think this part is bigger than a sub-part of a longer question. If it offends, please pardon me.
Assume that you have a …
13
votes
17answers
3k views
How do you rotate a two dimensional array?
Inspired by Raymond Chen's post, say you have a 4x4 two dimensional array, write a function that rotates it 90 degrees. Raymond links to a solution in pseudo code, but I'd like to see some real world …
