active questions tagged puzzle - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T00:33:36Zhttp://stackoverflow.com/feeds/tag/puzzlehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1812467/identify-file-format-from-header1Identify file format from header?Sunny Shah2009-11-28T12:55:08Z2009-11-28T14:29:55Z
<p>I got some files , which has header,</p>
<pre>{AD08E961-F492-11d1-B0EA-00AA00683350}2.00:en_US:45015:021 </pre>
<p>Can you please help me in finding out, from which software it is created.</p>
<p>Only information I have is, This file is created around 2000-2003.</p>
<p>I want to parse these files and want to extract some data.</p>
<p>Thanks,
Sunny.</p>
http://stackoverflow.com/questions/659752/programming-challenge-can-you-code-a-hello-world-program-as-a-palindrome54Programming challenge: can you code a hello world program as a Palindrome?Assaf2009-03-18T19:28:01Z2009-11-27T01:40:46Z
<p>So the puzzle is to write a <a href="http://en.wikipedia.org/wiki/Hello%5Fworld%5Fprogram" rel="nofollow">hello world program</a> in your language of choice, where the program's source file as a string has to be a <a href="http://en.wikipedia.org/wiki/Palindrome" rel="nofollow">palindrome</a>.</p>
<p>To be clear, the output has to be exactly "Hello, World".</p>
<p><hr /></p>
<h3>Edit:</h3>
<p>Well, with comments it seems trivial (not that I thought of it myself of course [sigh].. hat tip to <a href="http://stackoverflow.com/questions/659752/programming-challange-can-you-code-a-hello-world-program-as-a-palindrome/659761#659761">cobbal</a>). </p>
<p>So <strong>new rule: no comments.</strong></p>
<p><hr /></p>
<h3>Edit:</h3>
<p>I feel kind of bad editing someone else's question to say this, but it will eliminate a lot of non-palindromes that keep popping up, and I'm tired of seeing the same simple mistake over and over.</p>
<p>The following is <strong><em>NOT</em></strong> a palindrome:</p>
<pre><code>()()
</code></pre>
<p>The following <strong><em>IS</em></strong> a palindrome:</p>
<pre><code>())(
</code></pre>
<p>Brackets, parenthesis, and anything else that must match are a major barrier to palindrome-ing, yes, but that doesn't mean you can ignore them and post non-palindrome answers. </p>
http://stackoverflow.com/questions/1685486/a-very-average-puzzle3A very average puzzle [closed]Kevin Bourrillion2009-11-06T04:54:00Z2009-11-27T00:40:16Z
<p>This is just a puzzle for your amusement; I don't really need help with it.</p>
<p>What are the best implementations for these methods in Java?</p>
<pre><code>public int average(int[] values) {}
public long average(long[] values) {}
public long average(Iterable<Long> values) {}
</code></pre>
<p>Values should, of course, round down.</p>
<p>The critera for "best" for this puzzle (and, I think, any programming puzzle) are, in this order:</p>
<ol>
<li>Completeness</li>
<li>Correctness</li>
<li>Performance</li>
</ol>
<p>If multiple solutions have both of those going for them, then vote by niftiness!</p>
<p>Enjoy!</p>
http://stackoverflow.com/questions/325653/what-are-some-good-websites-for-programming-puzzles14What are some good websites for programming puzzles?Programmer2008-11-28T12:26:27Z2009-11-22T17:12:13Z
<p>Programing puzzles can be a great way to practice your skills and kill time between projects. What sources do you use for programing puzzles?</p>
http://stackoverflow.com/questions/90715/what-are-the-best-programming-puzzles-you-came-across11What are the best programming puzzles you came across?Niyaz2008-09-18T07:29:13Z2009-11-22T08:32:58Z
<p>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 better.</p>
<p>Programming puzzles are the soul of infotainment in the programming community.</p>
<p>What are your favorite programming puzzles?</p>
<p><em>For the validity of this question, you may want to check out: <a href="http://stackoverflow.com/questions/34257/posting-programmingalgorithmic-puzzles-on-so">Posting programming/algorithmic puzzles on SO</a></em></p>
<h3>EDIT (From Rob Cooper - NOT OP)</h3>
<blockquote>
<p><strong>Can we please not have lots of links for "Project Euler" and the like, post the "ACTUAL" puzzles that you find difficult/good - Please get <em>CONTENT</em> on StackOverflow, not just links.</strong></p>
</blockquote>
http://stackoverflow.com/questions/622/most-efficient-code-for-the-first-10000-prime-numbers7Most efficient code for the first 10000 prime numbers?Niyaz2008-08-03T05:45:21Z2009-11-21T17:00:48Z
<p>I want to print the first 10000 prime numbers.
Can anyone give me the most efficient code for this?
Clarifications:</p>
<ol>
<li>It does not matter if your code is inefficient for n >10000.</li>
<li>The size of the code does not matter.</li>
<li>You cannot just hard code the values in any manner.</li>
</ol>
http://stackoverflow.com/questions/1430962/how-to-optimally-solve-the-flood-fill-puzzle16How to optimally solve the flood fill puzzle?unknown (google)2009-09-16T04:35:47Z2009-11-19T16:41:52Z
<p>I like playing the puzzle game Flood-It, which can be played online at:</p>
<p><a href="http://floodit.appspot.com/" rel="nofollow">http://floodit.appspot.com/</a></p>
<p>It's also available as an iGoogle gadget. The aim is to fill the whole board with the least number of successive flood-fills.</p>
<p><img src="http://img193.imageshack.us/img193/9674/flooditscreenshot.png"></p>
<p>I'm trying to write a program which can solve this puzzle optimally. What's the best way to approach this problem? Ideally I want to use the A* algorithm, but I have no idea what should be the function estimating the number of steps left. I did write a program which conducted a depth-4 brute force search to maximize the filled area. It worked reasonably well and beat me in solving the puzzle, but I'm not completely satisfied with that algorithm.</p>
<p>Any suggestions? Thanks in advance.</p>
http://stackoverflow.com/questions/746082/how-to-find-list-of-possible-words-from-a-letter-matrix-boggle-solver62How to find list of possible words from a letter matrix [Boggle Solver]Paolo Bergantino2009-04-14T02:11:33Z2009-11-19T07:06:12Z
<p>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:</p>
<pre><code>F X I E
A M L O
E W B X
A S T U
</code></pre>
<p>The goal of the game is to find as many words as you can that can be formed by chaining letters together. You can start with any letter, and all the letters that surround it are fair game, and then once you move on to the next letter, all the letters that surround that letter are fair game, <strong>except for any previously used letters</strong>. So in the grid above, for example, I could come up with the words <code>LOB</code>, <code>TUX</code>, <code>SEA</code>, <code>FAME</code>, etc. Words must be at least 3 characters, and no more than NxN characters, which would be 16 in this game but can vary in some implementations. While this game is fun and addictive, I am apparently not very good at it and I wanted to cheat a little bit by making a program that would give me the best possible words (the longer the word the more points you get).</p>
<p><img src="http://www.boggled.org/sample.gif" alt="Sample Boggle" /></p>
<p>I am, unfortunately, not very good with algorithms or their efficiencies and so forth. My first attempt uses a dictionary <a href="http://www.freebsd.org/cgi/cvsweb.cgi/src/share/dict/web2?rev=1.12;content-type=text%2Fplain" rel="nofollow">such as this one</a> (~2.3MB) and does a linear search trying to match combinations with dictionary entries. This takes a <em>very</em> long time to find the possible words, and since you only get 2 minutes per round, it is simply not adequate.</p>
<p>I am interested to see if any Stackoverflowers can come up with more efficient solutions. I am mostly looking for solutions using the Big 3 Ps: Python, PHP, and Perl, although anything with Java or C++ is cool too, since speed is essential.</p>
<p><strong>CURRENT SOLUTIONS</strong>:</p>
<ul>
<li><a href="#746102" rel="nofollow">Adam Rosenfield</a>, Python, ~20s </li>
<li><a href="#746345" rel="nofollow">John Fouhy</a>, Python, ~3s </li>
<li><a href="#746955" rel="nofollow">Kent Fredric</a>, Perl, ~1s </li>
<li><a href="#750012" rel="nofollow">Darius Bacon</a>, Python, ~1s </li>
<li><a href="#750722" rel="nofollow">rvarcher</a>, VB.NET <a href="http://www.myvrad.com/boggle/default.aspx" rel="nofollow">(live link)</a>, ~1s</li>
<li><a href="#757165" rel="nofollow">Paolo Bergantino</a>, PHP <a href="http://www.rootspot.com/stackoverflow/boggle.php" rel="nofollow">(live link)</a>, ~5s (~2s locally)</li>
</ul>
<p><strong>BOUNTY</strong>:</p>
<p>I am adding a bounty to this question as my way of saying thanks to all the people who pitched in with their programs. Unfortunately I can only give the accepted answer to one of you, so I'll measure who has the fastest boggle solver 7 days from now and award the winner the bounty.</p>
<p>Bounty awarded. Thanks to everyone that participated.</p>
http://stackoverflow.com/questions/1378925/coding-brain-teaser-to-update-an-array-language-agnostic1Coding brain teaser to update an array (language agnostic)eviljack2009-09-04T12:29:00Z2009-11-18T18:11:18Z
<p>All,</p>
<p>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 this:</p>
<p>I have two arrays: A and B. </p>
<p>A has a list of names in it {Apple, Apple, Banana, Banana, Banana, Carrot, ...} each i-th value has no upper limit on the number of times it can appear in A. There can be just one "Apple" or a zillion. </p>
<p>Each entry in A has a matching entry in B. (many to many mapping). For example:</p>
<pre><code>A[0] = "Apple" B[0] = "0027"
A[1] = "Apple" B[1] = "0028"
A[2] = "Banana" B[2] = "0073"
A[3] = "Banana" B[3] = "0041"
A[4] = "Banana" B[4] = "0069"
</code></pre>
<p>If there are 100 or fewer instances of an entry in A, (if there are <= 100 Bananas) then they must all share the same initial "B" value. If there are more than 100, then the first 100 must share the same B values, but the next 100 will have the B[i + 100] th value.</p>
<p>Example if there are 102 apples</p>
<pre><code>A[0] = "Apple" B[0] = "0027"
A[1] = "Apple" B[1] = "0028"
...
A[99] = "Apple" B[99] = "0073"
A[100] = "Apple" B[100] = "0041"
A[101] = "Apple" B[101] = "0069"
A[102] = "Banana" B[102] = "0123"
</code></pre>
<p>Then the result that I want is this:</p>
<pre><code>A[0] = "Apple" B[0] = "0027"
A[1] = "Apple" B[1] = "0027"
...
A[99] = "Apple" B[99] = "0027"
A[100] = "Apple" B[100] = "0041"
A[101] = "Apple" B[101] = "0041"
A[102] = "Banana" B[102] = "0123"
</code></pre>
<p>I'm sure there are some super brains out there that can come up with the crappy algorithm I've devised, so let's see it!</p>
<p>Edit: Guess I should point out that this <em>was</em> for work. I thought this was a fun challenge that someone might want to look at and possibly come up with a better solution than the one I came up with.</p>
<p>Edit: thanks to daniel for pointing out my dumb mistakes.</p>
<p><strong>My solution just for comparison:</strong></p>
<h2>(pseudo code)</h2>
<p>first make a hash/dictionary of B, called d where d[ "Apple" ] = number of instances of Apple in A.</p>
<pre><code>while (i < A.count)
{
string cmp = A[i];
int v = d[cmp];
int j=i;
while (v--) {
B[j++] = B[i];
if (j %100 == 0)
i += j
}
i+= d[cmp];
}
</code></pre>
<p>doing this from memory, hope I didn't screw up an indexes...</p>
http://stackoverflow.com/questions/1744208/prolog-member-predicate-one-liner3Prolog - member predicate one-linerClaudiu2009-11-16T19:11:14Z2009-11-17T18:28:21Z
<p>Interview question!</p>
<p>This is how you normally define the <code>member</code> relation in Prolog:</p>
<pre><code>member(X, [X|_]). % member(X, [Head|Tail]) is true if X = Head
% that is, if X is the head of the list
member(X, [_|Tail]) :- % or if X is a member of Tail,
member(X, Tail). % ie. if member(X, Tail) is true.
</code></pre>
<p>Define it using only one rule.</p>
http://stackoverflow.com/questions/1738145/binary-search-in-c-with-recursive-function-accepting-only-length1Binary search in C with recursive function accepting only lengthzaharpopov2009-11-15T17:19:58Z2009-11-15T18:04:28Z
<p>I am solving "Programming Pearls" exercises. 4.11 say:</p>
<blockquote>
<p>Write and prove the correctness of a
recursive binary search function in C
or C++ with this declaration:</p>
<p>int binarysearch(DataType x[], int n);</p>
<p>Use this function alone; do not call
any other recursive function.</p>
</blockquote>
<p>I came up with:</p>
<pre><code>int bsearch_rec_array_only(int key, int* arr, int n)
{
int mid;
if (n < 0)
return -1;
mid = n / 2;
if (arr[mid] == key)
return (int) ((size_t) arr + mid * sizeof(*arr));
else if (arr[mid] < key)
return bsearch_rec_array_only(key, arr + mid + 1, n - mid - 1);
else
return bsearch_rec_array_only(key, arr, mid - 1);
}
</code></pre>
<p>However - there is problem. I return the offset including array address because otherwise how to know the relative offset of the element to original array?</p>
<p>So I need this wrapper:</p>
<pre><code>int bsearch_array_only_wrap(int key, int* arr, int n)
{
int offset;
if (n == 0)
return -1;
offset = bsearch_rec_array_only(key, arr, n);
if (offset == -1)
return -1;
else
return (offset - (int) arr) / sizeof(*arr);
}
</code></pre>
<p>It's not recursive - it just calls <code>bsearch_rec_array_only</code> and computes offset. </p>
<p>But this seems complicated. Can you find a better solution?</p>
http://stackoverflow.com/questions/1685552/simple-java-map-puzzle3Simple Java Map puzzle [closed]Kevin Bourrillion2009-11-06T05:14:11Z2009-11-13T19:36:48Z
<p>What is the best implementation for this general-purpose library method?</p>
<pre><code>public static <K, V> boolean containsEntry(
Map<K, V> map, K key, V value) {}
</code></pre>
<p>Criteria for judging this puzzle, as with most coding puzzles, are in this order:</p>
<ol>
<li>Completeness</li>
<li>Correctness</li>
<li>Performance</li>
<li>Beauty</li>
<li>Receipt of PayPal contribution</li>
</ol>
<p><strong>EDIT:</strong></p>
<p>Well, since it got closed, I might as well post the answer. I think this is probably optimal:</p>
<pre><code> V valueForKey = map.get(key);
return (valueForKey == null)
? value == null && map.containsKey(key)
: valueForKey.equals(value);
</code></pre>
<p>A clever simple solution would be:</p>
<pre><code> return map.entrySet().contains(
new AbstractMap.SimpleImmutableEntry<K, V>(key, value));
</code></pre>
<p>It does cause a trifle of heap pollution, though, so the first answer is probably better.</p>
http://stackoverflow.com/questions/1728206/c-puzzle-play-with-types9C Puzzle - play with typesGanesh Gopalasubramanian2009-11-13T09:40:53Z2009-11-13T16:09:23Z
<p>Please check the below program.</p>
<pre><code>#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) ;
}
</code></pre>
<p>Following are the questions</p>
<ol>
<li>What is the output of the program? </li>
<li><p>Where is ';' terminating the declaration of 'struct st'?</p>
<p>By ISO IEC 9899 - 1999
specification, declaration should
end with a ';'. </p>
<pre><code> declaration-specifiers init-declarator-listopt ;
</code></pre></li>
<li><p>If the declaration of the 'struct
st' is taken representing only the return type of
the function 'fn', how is it visible
to other functions (main)?</p></li>
</ol>
http://stackoverflow.com/questions/763832/programming-riddle-counting-down-without-subtracting14Programming Riddle: Counting down without subtracting.Peter2009-04-18T17:48:07Z2009-11-10T18:02:45Z
<p>Ok, goal by example : a command-line app that does this: </p>
<p>Countdown.exe 7</p>
<p>prints 7 6 5 4 3 2 1</p>
<p>No form of subtracting (including use of the minus sign) or string reverse what so ever is allowed.</p>
<p>waaaaay too easy apparently :-) An overview of the answers (the principles at least)</p>
<ol>
<li>By adding and recursion</li>
<li>By using modulo</li>
<li>By pushing and popping, (maybe the most obvious?)</li>
<li>By using overflow</li>
<li>By using trial and error (maybe the least obvious?)</li>
</ol>
http://stackoverflow.com/questions/55210/algorithm-to-generate-anagrams6Algorithm to generate anagrams..Prakash2008-09-10T20:15:17Z2009-11-10T05:34:08Z
<p>What would be the best strategy to generate anagrams.</p>
<blockquote>
<pre><code>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 original
letters exactly once;
ex.
</code></pre>
<ul>
<li><strong>Eleven plus two</strong> is anagram of <strong><em>Twelve plus one</em></strong> </li>
<li><strong>A decimal point</strong> is anagram of <strong><em>I'm a dot in place</em></strong></li>
<li><strong>Astronomers</strong> is anagram of <strong><em>Moon starers</em></strong></li>
</ul>
</blockquote>
<p>At first it looks straightforwardly simple, just to jumble the letters and generate all possible combinations. But what would be the efficient approach to generate only the words in dictionary.</p>
<p>I came across this page, <a href="http://lojic.com/blog/2007/10/22/solving-anagrams-in-ruby/" rel="nofollow">Solving anagrams in Ruby</a>. </p>
<p>But what are your ideas?</p>
http://stackoverflow.com/questions/137783/given-a-function-which-produces-a-random-integer-in-the-range-1-to-5-write-a-fun78Given 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 7praveen2008-09-26T04:33:32Z2009-11-09T12:11:16Z
<ol>
<li>what is simple solution </li>
<li>what is effective solution to less minimum memory and(or) cpu speed?</li>
</ol>
http://stackoverflow.com/questions/227383/how-do-i-programmatically-return-the-max-of-two-integers-without4How do I programmatically return the max of two integers without...MrDatabase2008-10-22T20:19:11Z2009-11-07T15:56:22Z
<p>... using any comparison operators... and without using if, else, etc.</p>
http://stackoverflow.com/questions/177118/algorithm-to-determine-if-array-contains-n-nm22Algorithm to determine if array contains n...n+m?Kyle Cronin2008-10-07T03:19:01Z2009-11-06T19:23:14Z
<p>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:</p>
<blockquote>
<p>Write a method that takes an int array of size m, and returns (True/False) if the array consists of the numbers n...n+m-1, all numbers in that range and only numbers in that range. The array is not guaranteed to be sorted. (For instance, {2,3,4} would return true. {1,3,1} would return false, {1,2,4} would return false.</p>
<p>The problem I had with this one is that my interviewer kept asking me to optimize (faster O(n), less memory, etc), to the point where he claimed you could do it in one pass of the array using a constant amount of memory. Never figured that one out.</p>
</blockquote>
<p>Along with your solutions please indicate if they assume that the array contains unique items. Also indicate if your solution assumes the sequence starts at 1. (I've modified the question slightly to allow cases where it goes 2, 3, 4...)</p>
<p><strong>edit:</strong> I am now of the opinion that there does not exist a linear in time and constant in space algorithm that handles duplicates. Can anyone verify this?</p>
<p>The duplicate problem boils down to testing to see if the array contains duplicates in O(n) time, O(1) space. If this can be done you can simply test first and if there are no duplicates run the algorithms posted. So can you test for dupes in O(n) time O(1) space?</p>
http://stackoverflow.com/questions/1665395/link-list-algorithm-to-find-pairs-adding-up-to-100Link list algorithm to find pairs adding up to 10Ankur2009-11-03T05:24:58Z2009-11-04T21:41:24Z
<p>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.</p>
<blockquote>
<p>Algorithm: Compare each node, starting with the second node, with each node starting from the head node till the previous node (previous to the current node being compared) and report all such pairs.</p>
</blockquote>
<p>I think this algorithm should work however its certainly not the most efficient one having a complexity of O(n2). </p>
<p>Can anyone hint at a solution which is more efficient (perhaps takes linear time). Additional or temporary nodes can be used by such a solution.</p>
http://stackoverflow.com/questions/154112/c-potential-interview-questiontoo-hard4C# Potential Interview Question…Too hard?FlySwat2008-09-30T17:31:34Z2009-10-23T08:24:33Z
<p>Without running this code, identify which <code>Foo</code> method will be called:</p>
<pre><code>class A
{
public void Foo( int n )
{
Console.WriteLine( "A::Foo" );
}
}
class B : A
{
/* note that A::Foo and B::Foo are not related at all */
public void Foo( double n )
{
Console.WriteLine( "B::Foo" );
}
}
static void Main( string[] args )
{
B b = new B();
/* which Foo is chosen? */
b.Foo( 5 );
}
</code></pre>
<p>Which method? And why? No cheating by running the code.</p>
<p>I found this puzzle on the web; I like it and I think I'm going to use it as an interview question...Opinions?</p>
<p>EDIT: I wouldn't judge a candidate on getting this wrong, I'd use it as a way to open a fuller discussion about the C# and CLR itself, so I can get a good understanding of the candidates abilities.</p>
<p><strong>Source:</strong> <a href="http://netpl.blogspot.com/2008/06/c-puzzle-no8-beginner.html" rel="nofollow">http://netpl.blogspot.com/2008/06/c-puzzle-no8-beginner.html</a></p>
http://stackoverflow.com/questions/1597985/help-understanding-sieve-of-eratosthenes-implementation2Help understanding Sieve of Eratosthenes implementationharto2009-10-20T23:53:31Z2009-10-21T05:12:14Z
<p>This is boring, I know, but I need a little help understanding an implementation of the Sieve of Eratosthenes. It's the solution to <a href="http://programmingpraxis.com/2009/02/19/sieve-of-eratosthenes/2/" rel="nofollow">this Programming Praxis problem</a>.</p>
<pre><code>(define (primes n)
(let* ((max-index (quotient (- n 3) 2))
(v (make-vector (+ 1 max-index) #t)))
(let loop ((i 0) (ps '(2)))
(let ((p (+ i i 3)) (startj (+ (* 2 i i) (* 6 i) 3)))
(cond ((>= (* p p) n)
(let loop ((j i) (ps ps))
(cond ((> j max-index) (reverse ps))
((vector-ref v j)
(loop (+ j 1) (cons (+ j j 3) ps)))
(else (loop (+ j 1) ps)))))
((vector-ref v i)
(let loop ((j startj))
(if (<= j max-index)
(begin (vector-set! v j #f)
(loop (+ j p)))))
(loop (+ 1 i) (cons p ps)))
(else (loop (+ 1 i) ps)))))))
</code></pre>
<p>The part I'm having trouble with is <code>startj</code>. Now, I can see that <code>p</code> is going to be cycling through odd numbers starting at 3, defined as <code>(+ i i 3)</code>. But I don't understand the relationship between <code>p</code> and <code>startj</code>, which is <code>(+ (* 2 i i) (* 6 i) 3)</code>.</p>
<p><hr /></p>
<p><strong>Edit</strong>: I understand that the idea is to skip previously sifted numbers. The puzzle definition states that when sifting a number <code>x</code>, sifting should start at the square of <code>x</code>. So, when sifting 3, start by eliminating 9, etc.</p>
<p>However, what I don't understand is how the author came up with that expression for <code>startj</code> (algebraically speaking).</p>
<p>From the puzzle comments:</p>
<blockquote>
<p>In general, when sifting by n, sifting starts at n-squared because all the previous multiples of n have already been sieved.</p>
<p>The rest of the expression has to do with the cross-reference between numbers and sieve indexes. There’s a 2 in the expression because we eliminated all the even numbers before we ever started. There’s a 3 in the expression because Scheme vectors are zero-based, and the numbers 0, 1 and 2 aren’t part of the sieve. I think the 6 is actually a combination of the 2 and the 3, but it’s been a while since I looked at the code, so I’ll leave it to you to figure out.</p>
</blockquote>
<p><hr /></p>
<p>If anyone could help me with this, that'd be great. Thanks!</p>
http://stackoverflow.com/questions/1395513/what-can-be-the-efficient-approach-to-solve-the-8-puzzle-problem3What can be the efficient approach to solve the 8 puzzle problem?Ravi2009-09-08T18:24:55Z2009-10-19T18:01:37Z
<p>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 position. In other words the gap can be swapped with an adjacent (horizontally and vertically) tile. The objective in the game is to begin with an arbitrary configuration of tiles, and move them so as to get the numbered tiles arranged in ascending order either running around the perimeter of the board or ordered from left to right, with 1 in the top left-hand position. </p>
<p><img src="http://www.8puzzle.com/images/8%5Fpuzzle%5Fstart%5Fstate%5Fa.png" alt="8 puzzle" /></p>
<p>I was wondering what approach will be efficient to solve this problem?</p>
http://stackoverflow.com/questions/1571009/duplicacy-problems-while-creating-a-sudoku-puzzle0duplicacy problems while creating a sudoku puzzlecambr2009-10-15T08:23:11Z2009-10-16T21:17:52Z
<p>I am trying to create my own normal 9x9 <a href="http://en.wikipedia.org/wiki/Sudoku" rel="nofollow">sudoku puzzle</a>.</p>
<p>I divided the problem into two parts - </p>
<ol>
<li>creating a fully filled sudoku, and</li>
<li>removing unnecessary numbers from
the grid</li>
</ol>
<p>Right now, I am stuck with the first part.</p>
<p><hr /></p>
<p>This is the algorithm I use in brief:</p>
<p>a) first of all I choose a number (say 1), generate a random cell position, and place it there if </p>
<ul>
<li>the cell is not already occupied, and </li>
<li>if the row does not already have the number, and</li>
<li>if the column does not already have the number, and</li>
<li>if the 3x3 box does not already have the number</li>
</ul>
<p>b) now I check for a situation in which in a row, or a column or a box, only one place is empty and I fill that</p>
<p>c) I check that if there is a number that in not present in a box but is present in the boxes in the same row and the same column (i am talking about 3x3 boxes here), the number's place is fixed and I fill it.</p>
<p>d) I repeat the above steps until every number appears nine times on the grid.</p>
<p><hr /></p>
<p>The <strong>problem</strong> I am facing is that, more than often I am getting an intermediate situation like this:</p>
<pre><code> 0 1 0 | 0 0 3 | 0[4/2]0
0 [2] 0 | 0 [4] 1 | 3 0 0
3 0 [4]|[2] 0 0 | 0 0 1
---------+---------+---------
2 0 3 | 0 5 4 | 0 1 0
0 0 1 | 3 0 2 |[4] 0 0
0 4 0 | 0 1 0 |[2] 3 0
---------+---------+---------
1 0 2 | 0 3 0 | 0 0 [4]
4 3 0 | 1 0 0 | 0 0 [2]
5 0 0 | 4 2 0 | 1 0 3
</code></pre>
<p>See the place with [4/2] written? that is the place of 2 as well as 4 because of the boxes marked []. </p>
<p><strong>What can I do to avoid getting in this situation (because this situation is a deadlock - I cannot move further)</strong></p>
http://stackoverflow.com/questions/831915/code-golf-automata11Code Golf: AutomataUnknown2009-05-06T21:38:37Z2009-10-16T01:36:40Z
<p>I made the ultimate laugh generator using these rules. Can you implement it in your favorite language in a clever manner?</p>
<h3>Rules:</h3>
<p>On every iteration, the following transformations occur.</p>
<pre><code>H -> AH
A -> HA
AA -> HA
HH -> AH
AAH -> HA
HAA -> AH
</code></pre>
<p></p>
<pre><code>n = 0 | H
n = 1 | AH
n = 2 | HAAH
n = 3 | AHAH
n = 4 | HAAHHAAH
n = 5 | AHAHHA
n = 6 | HAAHHAAHHA
n = 7 | AHAHHAAHHA
n = 8 | HAAHHAAHHAAHHA
n = 9 | AHAHHAAHAHHA
n = ...
</code></pre>
http://stackoverflow.com/questions/235003/acm-problem-coin-flipping-help-me-identify-the-type-of-problem-this-is10ACM Problem: Coin-Flipping, help me identify the type of problem this is. Simucal2008-10-24T19:40:30Z2009-10-14T13:44:44Z
<p>I'm practicing for the upcoming ACM programming competition in a week and I've gotten stumped on this programming problem.</p>
<p><strong>The problem is as follows:</strong></p>
<p><hr /></p>
<p>You have a puzzle consisting of a square grid of size 4. Each grid square holds a single coin; each coin is showing either heads (H) and tails (T). One such puzzle is shown here:</p>
<blockquote>
<p>H H H H<br />
T T T T<br />
H T H T<br />
T T H T </p>
</blockquote>
<p>Any coin that is current showing Tails (T) can be flipped to Heads (H). However, any time we flip a coin, we must also flip the adjacent coins direct above, below and to the left and right in the same row. Thus if we flip the second coin in the second row we must also flip 4 other coins, giving us this arrangment (coins that changed are shown in bold).</p>
<blockquote>
<p>H <strong>T</strong> H H<br />
<strong>H</strong> <strong>H</strong> <strong>H</strong> T<br />
H <strong>H</strong> H T<br />
T T H T </p>
</blockquote>
<p>If a coin is at the edge of the puzzle, so there is no coin on one side or the other, then we flip fewer coins. We do not "wrap around" to the other side. For example, if we flipped the bottom right coin of the arragnement above we would get:</p>
<blockquote>
<p>H T H H<br />
H H H T<br />
H H H <strong>H</strong><br />
T T <strong>T</strong> <strong>H</strong> </p>
</blockquote>
<p>Note: Only coins showing (T) tails can be selected for flipping. However, anytime we flip such a coin, adjacent coins are also flipped, regardless of their state.</p>
<p>The goal of the puzzle is to have all coins show heads. While it is possible for some arragnements to not have solutions, all the problems given will have solutions. The answer we are looking for is, for any given 4x4 grid of coins what is the least number of flips in order to make the grid entirely heads.</p>
<p>For Example the grid:<br />
H T H H<br />
T T T H<br />
H T H T<br />
H H T T </p>
<p>The answer to this grid is: 2 flips.</p>
<p><hr /></p>
<p>What I have done so far:</p>
<p>I'm storing our grids as two-dimensional array of booleans. Heads = true, tails = false.
I have a <strong>flip(int row, int col)</strong> method that will flip the adjacent coins according the rules above and I have a <strong>isSolved()</strong> method that will determine if the puzzle is in a solved state (all heads). So we have our "mechanics" in place.</p>
<p>The part we are having problems with is how should we loop through, going an the least amount of times deep?</p>
http://stackoverflow.com/questions/788535/eric-lipperts-challenge-comma-quibbling-best-answer5Eric Lippert's challenge "comma-quibbling", best answer?MMind2009-04-25T08:37:10Z2009-10-12T00:50:43Z
<p>I wanted to bring this challenege to the attention of the stackoverflow community. The original problem and answers are <a href="http://blogs.msdn.com/ericlippert/archive/2009/04/15/comma-quibbling.aspx" rel="nofollow">here</a>. BTW, if you did not follow it before, you should try to read Eric's blog, it is pure wisdom.</p>
<p><strong>Summary:</strong></p>
<p>Write a function that takes a non-null IEnumerable and returns a string with the following characteristics:</p>
<ol>
<li>If the sequence is empty the resulting string is "{}".</li>
<li>If the sequence is a single item "ABC" then the resulting string is "{ABC}".</li>
<li>If the sequence is the two item sequence "ABC", "DEF" then the resulting string is "{ABC and DEF}".</li>
<li>If the sequence has more than two items, say, "ABC", "DEF", "G", "H" then the resulting string is "{ABC, DEF, G and H}". (Note: no Oxford comma!)</li>
</ol>
<p>As you can see even our very own Jon Skeet (yes, it is well known that <a href="http://stackoverflow.com/questions/305223/jon-skeet-facts">he can be in two places at the same time</a>) has posted a solution but his (IMHO) is not the most elegant although probably you can not beat its performance.</p>
<p>What do you think? There are pretty good options there. I really like one of the solutions that involves the select and aggregate methods (from Fernando Nicolet). Linq is very powerful and dedicating some time to challenges like this make you learn a lot. I twisted it a bit so it is a bit more performant and clear (by using Count and avoiding Reverse):</p>
<pre><code> public static string CommaQuibbling(IEnumerable<string> items)
{
int last = items.Count() - 1;
Func<int, string> getSeparator = (i) => i == 0 ? string.Empty : (i == last ? " and " : ", ");
string answer = string.Empty;
return "{" + items.Select((s, i) => new { Index = i, Value = s })
.Aggregate(answer, (s, a) => s + getSeparator(a.Index) + a.Value) + "}";
}
</code></pre>
http://stackoverflow.com/questions/1549533/know-of-a-puzzleland0Know of a Puzzleland? [closed]Manav Sharma2009-10-11T01:00:30Z2009-10-11T01:11:51Z
<p>Puzzles have always been among the favorites for interviewers.</p>
<p>No doubt they reveal a lot about the problem solving capabilites of the candidate.</p>
<p>Can we all try to put in our 5 cents for the best of the best puzzle websites/ books out there?</p>
<p>One of them I know is 'How would you move Mount Fuji'</p>
<p>Thanks</p>
http://stackoverflow.com/questions/34257/posting-programming-algorithmic-puzzles-on-so3Posting programming/algorithmic puzzles on SO [closed]OysterD2008-08-29T09:34:43Z2009-10-10T23:37:41Z
<p>I was wondering if:</p>
<ol>
<li>it's OK to post these (properly tagged as 'puzzle's of course), knowing that it's not a 'real question' in the sense that the one who asks (usually) knows the answer?</li>
<li>others would be interested?</li>
</ol>
<p>Edit:</p>
<p>@Rob Cooper:</p>
<ul>
<li>the 'puzzle' tag (or some other...) could be used just to identify these questions I guess, so that it would be clear to everyone;</li>
<li>is there really always a need to pick a 'best answer'? Note that lots of questions being asked are quite subjective in nature, and do not have any 'best answer'...</li>
</ul>
http://stackoverflow.com/questions/1532851/how-to-solve-987654321-a-123456789-b-c-a-b-c-1How to solve 987654321 * a + 123456789 * b + c = ( a + b + c )³ ? [closed]Vadakkumpadath2009-10-07T16:52:26Z2009-10-08T12:09:17Z
<p>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, 0}, {0, 0, 1} are 2 of them.</p>
<p>I know there are several algorithms to solve this. However execution time of algorithm is the challenge to meet. </p>
<pre><code>987654321 * a + 123456789 * b + c = (a + b + c)³
</code></pre>
<p>Can somebody suggest a brilliant algorithm or C/C++ program to solve this problem? While you suggesting, please add the approximate execution time if possible.</p>
http://stackoverflow.com/questions/876293/fastest-algorithm-for-circle-shift-n-sized-array-for-m-position2Fastest algorithm for circle shift N sized array for M positionArsenMkrt2009-05-18T04:55:18Z2009-10-08T11:08:10Z
<p>What is the fastest algorithm for circle shifting array for m positions?<br/>
For example [3 4 5 2 3 1 4] shift m = 2 positions should be [1 4 3 4 5 2 3]</p>
<p>Thanks a lot</p>