3
votes
2answers
115 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 …
2
votes
1answer
122 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 …
0
votes
4answers
89 views
Link list algorithm to find pairs adding up to 10
Can you suggest an algorithm that find all pairs of nodes in a link list that add up to 10.
I came up with the following.
Algorithm: Compare each node, starting with the second …
51
votes
66answers
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 e …
2
votes
2answers
179 views
Help understanding Sieve of Eratosthenes implementation
This is boring, I know, but I need a little help understanding an implementation of the Sieve of Eratosthenes. It's the solution to this Programming Praxis problem.
(define (prime …
74
votes
28answers
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?
0
votes
3answers
112 views
duplicacy problems while creating a sudoku puzzle
I am trying to create my own normal 9x9 sudoku puzzle.
I divided the problem into two parts -
creating a fully filled sudoku, and
removing unnecessary numbers from
the grid
R …
60
votes
14answers
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 …
15
votes
7answers
408 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 …
3
votes
8answers
355 views
Compile time sizeof_array without using a macro
This is just something that has bothered me for the last couple of days, I don't think it's possible to solve but I've seen template magic before.
Here goes:
To get the number of …
-1
votes
12answers
854 views
How to solve 987654321 * a + 123456789 * b + c = ( a + b + c )³ ? [closed]
I want to write a C++ program to find the values of a, b, c that satisfy following equation. Only clue available for me at this time is, there are 5 set of known solutions for this …
3
votes
4answers
659 views
What can be the efficient approach to solve the 8 puzzle problem?
The 8-puzzle is a square board with 9 positions, filled by 8 numbered tiles and one gap. At any point, a tile adjacent to the gap can be moved into the gap, creating a new gap posi …
13
votes
37answers
3k 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 …
0
votes
2answers
112 views
Know of a Puzzleland? [closed]
Puzzles have always been among the favorites for interviewers.
No doubt they reveal a lot about the problem solving capabilites of the candidate.
Can we all try to put in our 5 c …
1
vote
2answers
112 views
Java Puzzler - Can anyone explain this behavior ?
abstract class AbstractBase {
abstract void print();
AbstractBase() {
// Note that this call will get mapped to the most derived class's method
print();
…
