1
vote
2answers
47 views
Identify file format from header?
I got some files , which has header,
{AD08E961-F492-11d1-B0EA-00AA00683350}2.00:en_US:45015:021
Can you please help me in finding out, from which software it is created.
Only information I have …
3
votes
2answers
167 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
% that is, if X is …
1
vote
1answer
83 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 binarysearch(DataType …
9
votes
2answers
104 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() ;
printf ("%d", obj.a) …
3
votes
2answers
160 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 …
3
votes
1answer
177 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) {}
public long …
0
votes
4answers
142 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 node, with each …
2
votes
2answers
185 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 (primes n)
(let* …
0
votes
3answers
121 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
Right now, I am stuck …
0
votes
2answers
120 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 cents for the best of …
-1
votes
12answers
865 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 problem and {0, 0, …
1
vote
2answers
115 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();
}
}
class …
-1
votes
0answers
145 views
5x5 1 tile missing Puzzle [closed]
|_|_|_|_|_|
|_|_|_|_|_|
|_|_|_|_|_|
|_|_|_|_|_|
|_|X|_|_|_|
This is a puzzle. You have to get into all squares but you can only move vertically or horizontally you cant move with 45 degrees. only 90 …
3
votes
8answers
400 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 elements in a …
16
votes
8answers
493 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 …
