3
votes
2answers
134 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
75 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 …
9
votes
2answers
100 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 …
2
votes
1answer
146 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 …
53
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 …
3
votes
2answers
144 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 …
0
votes
4answers
122 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 …
16
votes
8answers
481 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 …
77
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?
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 …
2
votes
2answers
183 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 …
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 …
0
votes
3answers
117 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 …
3
votes
8answers
383 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 …
3
votes
4answers
711 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 …
