Tagged Questions
A question that is more like solving a puzzle
222
votes
47answers
33k views
Expand a random range from 1-5 to 1-7
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 a simple solution?
What is an effective solution ...
196
votes
8answers
12k views
Why doesn't this code simply print letters A to Z?
<?php
for ($i = 'a'; $i <= 'z'; $i++)
echo "$i\n";
This snippet gives the following output (newlines are replaced by spaces):
a b c d e f g h i j k l m n o p q r s t u v w x y z aa ab ...
125
votes
17answers
17k 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 ...
108
votes
68answers
20k 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, ...
81
votes
25answers
7k 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
...
60
votes
29answers
6k 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, ...
51
votes
11answers
8k 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. ...
39
votes
23answers
5k views
What are some good websites for programming puzzles? [closed]
Programing puzzles can be a great way to practice your skills and kill time between projects. What sources do you use for programing puzzles?
36
votes
6answers
2k views
hello world in C without semicolons and without IF/WHILE/FOR statements
My friend says it's possible to write a C program that will print "hello world" without IF/WHILE/FOR and without semicolons. After minimal research I told her it was not possible. Is it possible?
35
votes
8answers
2k views
The “guess the number” game for arbitrary rational numbers?
I once got the following as an interview question:
I'm thinking of a positive integer n. Come up with an algorithm that can guess it in O(lg n) queries. Each query is a number of your choosing, ...
34
votes
37answers
7k 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 ...
34
votes
20answers
19k 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 ...
27
votes
12answers
4k views
Check if a number is divisible by 3
Not sure if it's a duplicate. But I need to find whether a number is divisible by 3 without using %, / or *. The hint given was to use atoi() function. Any idea how to do it?
25
votes
8answers
1k views
Fixing a broken loop by changing exactly one character [closed]
I found a site with some complicated C puzzles. Right now I'm dealing with this:
The following is a piece of C code, whose intention was to print a minus sign 20 times. But you can notice that, it ...
23
votes
6answers
1k views
Why does (x += x += 1) evaluate differently in C and Javascript?
If the value of the variable x is initially 0, the expression x += x += 1 will evaluate to 2 in C, and to 1 in Javascript.
The semantics for C seems obvious to me: x += x += 1 is interpreted as x += ...
23
votes
29answers
11k views
What are the best programming puzzles you came across?
Every single programmer worth his salt is inspired by great programming puzzles. Some puzzles are intended to sharpen your analytical abilities while some others make your programming abilities ...
23
votes
13answers
4k 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 ...
22
votes
5answers
525 views
Generalizing the algorithm for domino tiling?
In this earlier question the OP asked the following problem:
Given a rectangular grid where some squares are empty and some are filled, what is the largest number of 2x1 dominoes that can be ...
22
votes
4answers
692 views
How can I improve this algorithm for solving a modified Postage Stamp problem?
Son of Darts Problem was a contest on Al Zimmermann's Programming Contests that ended on 20 Jun 2010 :
Suppose that you have a dartboard that is divided into R regions. Each dartboard region ...
22
votes
9answers
4k 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 ...
21
votes
15answers
13k views
Algorithm to generate anagrams
What would be the best strategy to generate anagrams.
An anagram is a type of word play, the result of rearranging the letters
of a word or phrase to produce a new word or phrase, using all the ...
19
votes
3answers
319 views
Construct the largest possible rectangle out of line segments of given lengths
I recently participated in a competition where I was asked this question. Given an array with lengths what is the area of the biggest rectangle that can be made using ALL the lengths. The lengths can ...
19
votes
4answers
505 views
C Code: How does these even work?
I just saw this here
#include <stdio.h>
int main(int argc, char *argv[printf("Hello, world!\n")]) {}
What this does is print "Hello World!"
But what's actually going on here?
The best I ...
19
votes
4answers
524 views
What is your solution to the “Escape from Zurg” puzzle in C#?
found this puzzle HERE... I made a brute force solution and I would like to know how you woul solve it...
Buzz, Woody, Rex, and Hamm have to escape from Zurg(a) They merely have to cross
one last ...
19
votes
23answers
2k views
Eric Lippert's challenge “comma-quibbling”, best answer?
I wanted to bring this challenege to the attention of the stackoverflow community. The original problem and answers are here. BTW, if you did not follow it before, you should try to read Eric's blog, ...
19
votes
7answers
2k 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 ...
18
votes
6answers
478 views
Print number of 1s in a sequence upto a number, without actually counting 1s [closed]
An interview question :
Make a program which takes input 'N'(unsigned long) and prints two columns, 1st column prints numbers from 1 to N (in hexadecimal format) and second column prints the number ...
18
votes
14answers
2k views
Code Golf: Automata
I made the ultimate laugh generator using these rules. Can you implement it in your favorite language in a clever manner?
Rules:
On every iteration, the following transformations occur.
H -> ...
18
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.
...
17
votes
8answers
606 views
What is an elegant way to check if 3 variables are equal when any of them can be a wildcard?
Say I have 3 char variables, a, b and c.
Each one can be '0', which is a special case and means it matches every char.
So if a is '0', I only need to check if b == c.
I want to check if a == b == c, ...
17
votes
2answers
1k views
Simple Java Map puzzle [closed]
What is the best implementation for this general-purpose library method?
public static <K, V> boolean containsEntry(
Map<K, V> map, K key, V value) {}
Criteria for judging this ...
17
votes
6answers
1k 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 ...
16
votes
5answers
699 views
Modify a given number to find the required sum?
A friend of mine sent me this question. I haven't really been able to come up with any kind of algorithm to solve this problem.
You are provided with a no. say 123456789 and two operators * and +. ...
16
votes
21answers
3k views
Programming Riddle: How might you translate an Excel column name to a number?
I was recently asked in a job interview to resolve a programming puzzle that I thought it would be interesting to share. It's about translating Excel column letters to actual numbers, if you recall, ...
15
votes
2answers
694 views
Programming two trains to intersect without positional data or communication (logic puzzle) [closed]
A helicopter drops two trains, each on a parachute, onto a straight infinite railway line.
There is an undefined distance between the two trains.
Each faces the same direction, and upon landing, the ...
14
votes
4answers
320 views
function with the same name as a macro
#include<stdio.h>
void f(int a)
{
printf("%d", a);
}
#define f(a) {}
int main()
{
/* call f : function */
}
How to call f (the function)? Writing f(3) doesn't work because it is replaced by ...
14
votes
8answers
513 views
Optimally picking one element from each list
I came across an old problem that you Mathematica/StackOverflow folks will probably like and that seems valuable to have on StackOverflow for posterity.
Suppose you have a list of lists and you want ...
14
votes
3answers
621 views
The “pattern-filling with tiles” puzzle
I've encountered an interesting problem while programming a random level generator for a tile-based game. I've implemented a brute-force solver for it but it is exponentially slow and definitely unfit ...
14
votes
15answers
2k views
C puzzle: Output of printf should be '5' always
I found this puzzle in a C aptitude paper.
void change()
{
//write something in this function so that output of printf in main function
//should always give 5.you can't change the main ...
14
votes
6answers
2k views
Any recommended websites for SQL puzzles?
Is there any website that contains SQL puzzles, tips/tricks etc?
Any version of SQL (Oracle, MSSQL etc) will do. Just want to solve some general SQL puzzles and want to learn more about SQL.
Thanks ...
13
votes
10answers
1k views
How to find repeating sequence of characters in given array
my problem is to find the repeating sequence of characters in the given array. simply, to identify the pattern in which the characters are appearing.
example:
for the examples in the above image ...
13
votes
6answers
502 views
Puzzle that defies the brute force approach?
I bought a blank DVD to record my favorite TV show. It came with 20 digit stickers. 2 of each of '0'-'9'.
I thought it would be a good idea to numerically label my new DVD collection. I taped the '1' ...
13
votes
9answers
3k views
java based programming challenges
Is there any website which provides core java based programming challenges that tests programming logic?
13
votes
15answers
2k views
Solution to a recursive problem (code kata)
This came up while talking to a friend and I thought I'd ask here since it's an interesting problem and would like to see other people's solutions.
The task is to write a function Brackets(int n) ...
13
votes
6answers
673 views
Why is my simple comparator broken?
I have a class, which I have simplified to this:
final class Thing {
private final int value;
public Thing(int value) {
this.value = value;
}
public int getValue() {
...
12
votes
5answers
351 views
Pairwise sum of n numbers in non increasing order
I saw this question in a programming interview blog.
If pairwise sums of n numbers are given in non-decreasing order identify the individual numbers. If the sum is corrupted print -1.
Example:
...
12
votes
6answers
959 views
Race Car Puzzle
Could you please help me with this puzzle that I am not able to find a nice answer to!!
There are 49 cars which race at unique speeds. Also there is a race track in which at maximum 7 cars can be ...
12
votes
6answers
2k 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.
...
12
votes
8answers
2k views
recursion: cut array of integers in two parts of equal sum - in a single pass
Using recursion, find an index that cuts an array in two parts so that both parts have equal sum.
Cut means to cut like with a knife. All the cells with index <= to the result must be equal in ...
12
votes
11answers
15k views
Find all combinations of coins when given some dollar value
I found a piece of code that I was writing for interview prep few months ago.
According to the comment I had, it was trying to solve this problem:
Given some dollar value in cents (e.g. 200 = 2 ...