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?
11
votes
24answers
2k 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 programm …
7
votes
18answers
3k views
Most efficient code for the first 10000 prime numbers?
I want to print the first 10000 prime numbers.
Can anyone give me the most efficient code for this?
Clarifications:
It does not matter if your code is inefficient for n > …
3
votes
1answer
157 views
A very average puzzle [closed]
This is just a puzzle for your amusement; I don't really need help with it.
What are the best implementations for these methods in Java?
public int average(int[] values) {}
publ …
16
votes
8answers
487 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 w …
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 …
1
vote
4answers
351 views
Coding brain teaser to update an array (language agnostic)
All,
I need a clever way to implement this algorithm (for work) as quickly and cleanly as possible:
I think I've removed all the language specific issues and boiled it down to thi …
3
votes
2answers
147 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
…
1
vote
1answer
78 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 bin …
3
votes
2answers
156 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 f …
9
votes
2answers
102 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() ;
p …
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 …
6
votes
12answers
2k 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 phras …
78
votes
29answers
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?
4
votes
9answers
1k views
How do I programmatically return the max of two integers without…
... using any comparison operators... and without using if, else, etc.
