active questions tagged challenge - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T14:37:53Zhttp://stackoverflow.com/feeds/tag/challengehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1837546/how-would-you-make-this-switch-statement-as-fast-as-possible10How would you make this switch statement as fast as possible?Dan2009-12-03T04:02:57Z2009-12-04T10:38:17Z
<p>Consider the following very harmless, very straightforward method, which uses a <code>switch</code> statement to return a defined enum value:</p>
<pre><code>public static MarketDataExchange GetMarketDataExchange(string ActivCode) {
if (ActivCode == null) return MarketDataExchange.NONE;
switch (ActivCode) {
case "": return MarketDataExchange.NBBO;
case "A": return MarketDataExchange.AMEX;
case "B": return MarketDataExchange.BSE;
case "BT": return MarketDataExchange.BATS;
case "C": return MarketDataExchange.NSE;
case "MW": return MarketDataExchange.CHX;
case "N": return MarketDataExchange.NYSE;
case "PA": return MarketDataExchange.ARCA;
case "Q": return MarketDataExchange.NASDAQ;
case "QD": return MarketDataExchange.NASDAQ_ADF;
case "W": return MarketDataExchange.CBOE;
case "X": return MarketDataExchange.PHLX;
case "Y": return MarketDataExchange.DIRECTEDGE;
}
return MarketDataExchange.NONE;
}
</code></pre>
<p>My colleague and I batted around a few ideas today about how to actually make this method faster, and we came up with some interesting modifications that did in fact improve its performance rather significantly (proportionally speaking, of course). I'd be interested to know what sorts of optimizations anyone else out there can think up that might not have occurred to us.</p>
<p>Right off the bat, let me just offer a quick disclaimer: this is for <strong>fun</strong>, and <em>not</em> to fuel the whole "to optimize or not to optimize" debate. That said, if you count yourself among those who dogmatically believe "premature optimization is the root of all evil," just be aware that I work for a high-frequency trading firm, where <em>everything</em> needs to run absolutely as fast as possible--bottleneck or not. So, even though I'm posting this on SO for <strong>fun</strong>, it isn't just a huge waste of time, either.</p>
<p>One more quick note: I'm interested in two kinds of answers--those that assume every input will be a valid ActivCode (one of the strings in the <code>switch</code> statement above), and those that do not. I am <em>almost</em> certain that making the first assumption allows for further speed improvements; anyway, it did for us. But I know that improvements are possible either way.</p>
http://stackoverflow.com/questions/1824066/abstracting-from-stateful-object-navigation-1-1-the-challenge-1Abstracting from Stateful object navigation (1-1) - the challengeDmitriy Nagirnyak2009-12-01T04:49:00Z2009-12-02T19:28:49Z
<p>Hi,</p>
<p>The point of this exercise is to make navigation between objects stateful. </p>
<p>For example, having Person and Address with 1-1 association it should:</p>
<ul>
<li>If an address is assigned to a persons, then the person should be assigned to the address (and vice versa).</li>
<li>If address is assigned to person1 and then to person2, then the person1 will have no address and person2 will.</li>
</ul>
<p><hr></p>
<p>This is the piece of code that implements it.</p>
<pre><code>public class A {
internal B a;
public B Value {
get {
return a;
}
set {
if (value == null) {
if (a != null)
a.a = null;
} else
value.a = this;
a = value;
}
}
}
public class B {
internal A a;
public A Value {
get {
return a;
}
set {
if (value == null) {
if (a != null)
a.a = null;
} else
value.a = this;
a = value;
}
}
}
</code></pre>
<p>This allows following tests to pass:</p>
<pre><code>// For the common setup:
var a = new A();
var b = new B();
// Test 1:
a.Value = b;
Assert.AreSame(a, b.Value);
// Test 2:
b.Value = a;
Assert.AreEqual(b, a.Value);
// Test 3:
b.Value = a;
b.Value = null;
Assert.IsNull(a.Value);
// Test 4:
var a2 = new A();
b.Value = a2;
Assert.AreSame(b, a2.Value);
Assert.AreNotSame(a, b.Value);
// Test 5:
a.Value = b;
Assert.AreSame(a, b.Value);
var a1 = new A();
var b1 = new B();
a1.Value = b1;
Assert.AreSame(a1, b1.Value);
// Test 6:
var a1 = new A();
var b1 = new B();
Assert.IsNull(a.Value);
Assert.IsNull(b.Value);
Assert.IsNull(a1.Value);
Assert.IsNull(b1.Value);
</code></pre>
<p><hr></p>
<p>Now the question is: how would you abstract the code in the setters to avoid possible mistakes when writing a lot of such classes?</p>
<p>The conditions are:</p>
<ul>
<li>The PUBLIC interfaces of classes A and B cannot be changed. </li>
<li>Factories should not be used.</li>
<li>Statics should not be used (to persist shared info).</li>
<li>ThreadInfo or similar should not be used.</li>
</ul>
http://stackoverflow.com/questions/1634401/what-is-a-good-community-run-venue-for-finding-programming-competitions7What is a good community run venue for finding programming competitions? Jherico2009-10-27T23:54:36Z2009-12-01T16:26:17Z
<p>The closure of a recent <a href="http://stackoverflow.com/questions/1631414/what-is-the-best-battleship-ai-closed">entertaining 'question'</a> got me wondering what would have been a better forum for the challenge presented. I know there is a <a href="http://stackoverflow.com/questions/505404/what-are-good-programming-competitions">similar question</a>, but most of the responses are pointers to infrequent and or hierarchical style challenges. I don't see any where the programming community creates both the challenges and the solutions. Is there such a venue, or is it perhaps another potential Stack Overflow offshoot?</p>
<p>Alternatively, what features would you like to see in such a site?</p>
http://stackoverflow.com/questions/1812765/whats-the-most-challenging-algorithm-you-ever-implemented3What's the most challenging algorithm you ever implemented? [closed]Mask2009-11-28T15:23:09Z2009-11-29T17:10:44Z
<p>For me,it's the <code>dijkstra</code>,what about you?</p>
http://stackoverflow.com/questions/1749905/code-golf-fractran32Code Golf: FractranNick Johnson2009-11-17T16:06:48Z2009-11-27T11:49:40Z
<h1>The Challenge</h1>
<p>Write a program that acts as a <a href="http://en.wikipedia.org/wiki/FRACTRAN" rel="nofollow">Fractran</a> interpreter. The shortest interpreter by character count, in any language, is the winner. Your program must take two inputs: The fractran program to be executed, and the input integer n. The program may be in any form that is convenient for your program - for example, a list of 2-tuples, or a flat list. The output must be a single integer, being the value of the register at the end of execution.</p>
<h2>Fractran</h2>
<p>Fractran is a trivial esoteric language invented by <a href="http://en.wikipedia.org/wiki/John%5FHorton%5FConway" rel="nofollow">John Conway</a>. A fractran program consists of a list of positive fractions and an initial state n. The interpreter maintains a program counter, initially pointing to the first fraction in the list. Fractran programs are executed in the following fashion:</p>
<ol>
<li>Check if the product of the current state and the fraction currently under the program counter is an integer. If it is, multiply the current state by the current fraction and reset the program counter to the beginning of the list.</li>
<li>Advance the program counter. If the end of the list is reached, halt, otherwise return to step 1.</li>
</ol>
<p>For details on how and why Fractran works, see <a href="http://esoteric.voxelperfect.net/wiki/Fractran" rel="nofollow">the esolang entry</a> and <a href="http://scienceblogs.com/goodmath/2006/10/prime%5Fnumber%5Fpathology%5Ffractra.php" rel="nofollow">this entry</a> on good math/bad math.</p>
<h2>Test Vectors</h2>
<p><strong>Program:</strong> [(3, 2)]<br>
<strong>Input:</strong> 72 (2<sup>3</sup>3<sup>2</sup>)<br>
<strong>Output:</strong> 243 (3<sup>5</sup>)</p>
<p><strong>Program:</strong> [(3, 2)]<br>
<strong>Input:</strong> 1296 (2<sup>4</sup>3<sup>4</sup>)<br>
<strong>Output:</strong> 6561 (3<sup>8</sup>)</p>
<p><strong>Program:</strong> [(455, 33), (11, 13), (1, 11), (3, 7), (11, 2), (1, 3)]<br>
<strong>Input:</strong> 72 (2<sup>3</sup>3<sup>2</sup>)<br>
<strong>Output:</strong> 15625 (5<sup>6</sup>)</p>
<p><strong>Bonus test vector:</strong></p>
<p>Your submission does not need to execute this last program correctly to be an acceptable answer. But kudos if it does!</p>
<p><strong>Program:</strong> [(455, 33), (11, 13), (1, 11), (3, 7), (11, 2), (1, 3)]<br>
<strong>Input:</strong> 60466176 (2<sup>10</sup>3<sup>10</sup>)<br>
<strong>Output:</strong> 7888609052210118054117285652827862296732064351090230047702789306640625 (5<sup>100</sup>)</p>
<h2>Submissions & Scoring</h2>
<p>Programs are ranked strictly by length in characters - shortest is best. Feel free to submit both a nicely laid out and documented and a 'minified' version of your code, so people can see what's going on.</p>
<p><strong>The language 'J' is not admissible. This is because there's already a well-known solution in J on one of the linked pages.</strong> If you're a J fan, sorry!</p>
<p>As an extra bonus, however, anyone who can provide a working fractran interpreter <em>in</em> fractran will receive a 500 reputation point bonus. In the unlikely event of multiple self-hosting interpreters, the one with the shortest number of fractions will receive the bounty.</p>
<h2>Winners</h2>
<p>The official winner, after submitting a self-hosting fractran solution comprising 1779 fractions, is <a href="http://stackoverflow.com/questions/1749905/code-golf-fractran/1773868#1773868">Jesse Beder's solution</a>. Practically speaking, the solution is too slow to execute even 1+1, however.</p>
<p>Incredibly, this has since been beaten by another fractran solution - <a href="http://stackoverflow.com/questions/1749905/code-golf-fractran/1802570#1802570">Amadaeus's solution</a> in only 84 fractions! It is capable of executing the first two test cases in a matter of seconds when running on my reference Python solution. It uses a novel encoding method for the fractions, which is also worth a close look.</p>
<p>Honorable mentions to:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/1749905/code-golf-fractran/1750591#1750591">Stephen Canon's solution</a>, in 165 characters of x86 assembly (28 bytes of machine code)</li>
<li><a href="http://stackoverflow.com/questions/1749905/code-golf-fractran/1751375#1751375">Jordan's solution</a> in 52 characters of ruby - which handles long integers</li>
<li><a href="http://stackoverflow.com/questions/1749905/code-golf-fractran/1750633#1750633">Useless's solution</a> in 87 characters of Python, which, although not the shortest Python solution, is one of the few solutions that isn't recursive, and hence handles harder programs with ease. It's also very readable.</li>
</ul>
http://stackoverflow.com/questions/1659045/usbcell-can-anyone-program-this0USBCELL - Can anyone program this?CheeseConQueso2009-11-02T01:35:34Z2009-11-26T19:14:37Z
<p><a href="http://www.usbcell.com/" rel="nofollow">USBCELL</a> rechareable batteries - charged using the USB port<hr></p>
<p>These came out a while back and are worth the money, in my opinion.</p>
<p>I searched around for software specifically made to monitor the battery level of USBCELL batteries and got nothing. There are some USB port monitor programs out there which might tie in somehow, but they could be unrelated also.</p>
<p>Anyway..</p>
<p>Is it possible to write a program that tells you the battery level of the USBCELL when its plugged in and is charging?
<hr>
<b>EDIT</b><br>
If it makes any difference, the batteries have status lights that turn on when plugged in.<br>
There is nothing to install (optional or required) to get these to work. </p>
http://stackoverflow.com/questions/24692/where-can-you-find-fun-educational-programming-challenges38Where can you find fun/educational programming challenges?tj99912008-08-23T23:08:03Z2009-11-22T05:09:34Z
<p>I've searched around for different challenge sites, and most of them seem to be geared towards difficulty in problem solving logically, rather than trying to use your language of choice to do something you haven't used it for. Their center is around mathematics rather than function design.</p>
<p>Some kind of point system for correctly solving challenges, or solving them the most efficient/smallest would be neat as well.</p>
<h2>Listed sites</h2>
<ul>
<li><strong><a href="http://projecteuler.net/" rel="nofollow">Project Euler</a></strong></li>
<li><a href="http://www.topcoder.com/tc" rel="nofollow">TopCoder</a></li>
<li><a href="http://icpcres.ecs.baylor.edu/onlinejudge/index.php" rel="nofollow">UVa Online Judge</a></li>
<li><a href="http://www.pythonchallenge.com/" rel="nofollow">Challenges with Python</a></li>
<li><a href="http://code.google.com/codejam/" rel="nofollow">Google Code Jam</a></li>
<li><a href="http://www.programming-challenges.com/pg.php?page=index" rel="nofollow">Programming Challenges</a></li>
<li><a href="http://forum.lessthandot.com/viewforum.php?f=102" rel="nofollow">Less Than Dot</a></li>
<li><a href="http://cm2prod.baylor.edu/" rel="nofollow">ACM's Programing Contest archive</a></li>
<li><a href="http://train.usaco.org/usacogate" rel="nofollow">USACO problems</a></li>
<li><a href="http://www.itasoftware.com/careers/SolveThisWorkHerePuzzles.html" rel="nofollow">ITA Software's puzzle page</a></li>
<li><a href="http://refactormycode.com/" rel="nofollow">Refactor My Code</a></li>
<li><a href="http://www.rubyquiz.com/" rel="nofollow">Ruby Quiz</a></li>
</ul>
http://stackoverflow.com/questions/1769888/how-to-display-the-authentication-challenge-in-uiwebview0How to display the Authentication Challenge in UIWebView?UVT2009-11-20T11:28:32Z2009-11-20T11:28:32Z
<p>I am trying to access a secure website through UIWebView. When I access it through safari, i get an authentication challenge but the same does not appear in my UIWebView in the application. How can I make it appear?</p>
<p>Any pointers, sample code or links will be very helpful. Thanks a lot. </p>
http://stackoverflow.com/questions/1731645/challenges-of-code-review-with-remote-team3Challenges of code review with remote teamrajachan2009-11-13T20:19:42Z2009-11-13T20:43:47Z
<p>My entire team works from a different geographical location and I am the only programmer working remotely. I often find it quite difficult to have my code reviewed, as people take very long time to give their comments (usually they are genuinely busy with high priority work and I work mostly only on low priority projects/task ) .The company's policy dictates that it's not possible for me to checkin the code before the reviewer approves it. I usually start my projects with great interest but end up stuck in this situation quite often and it's very frustrating. </p>
<p>Also since I am not that assertive, I don't reach out to people and hold them responsible to review in fear of offending them. People do provide quality comments at times, but it completely depends on the person's bandwidth. What should I do in this situation to make team members accountable ? Should I talk to my boss about this problem? Do you think it would backfire ? </p>
http://stackoverflow.com/questions/1656804/sql-call-stored-procedure-for-each-row1SQL Call Stored Procedure for each RowJohannes Rudolph2009-11-01T10:15:21Z2009-11-01T10:44:30Z
<p>How can one call a stored procedure for each row in a table, where the columns of a row are input parameters to the sp <strong><em>without</em></strong> using a Cursor?</p>
http://stackoverflow.com/questions/924629/challenge-getting-linq-to-entities-to-generate-decent-sql-without-unnecessary-jo2 Challenge: Getting Linq-to-Entities to generate decent SQL without unnecessary joinsKristoferA2009-05-29T06:14:19Z2009-10-25T11:52:42Z
<p>I recently came across a question in the Entity Framework forum on msdn:
<a href="http://social.msdn.microsoft.com/Forums/en-US/adodotnetentityframework/thread/bb72fae4-0709-48f2-8f85-31d0b6a85f68" rel="nofollow">http://social.msdn.microsoft.com/Forums/en-US/adodotnetentityframework/thread/bb72fae4-0709-48f2-8f85-31d0b6a85f68</a></p>
<p>The person who asked the question tried to do a relatively simple query, involving two tables, a grouping, order by, and an aggregation using Linq-to-Entities. A pretty straightforward Linq query, and straightforward to do in SQL as well - the kind of stuff people try to do every day.</p>
<p>However, when using Linq-to-Entities the outcome is a complex query with lots of unnecessary joins etc. I tried it and wasn't able to get Linq-to-Entities to generate a decent SQL query from it if using just pure Linq against the EF entities.</p>
<p>Having seen a fair share of monster queries from EF I thought maybe the OP (and me, <a href="http://stackoverflow.com/questions/767049/linq-to-entities-excessive-joins-in-generated-sql">and others</a>) are doing something wrong. Maybe there is a better way to do this?</p>
<p>So here's my challenge: using <a href="http://social.msdn.microsoft.com/Forums/en-US/adodotnetentityframework/thread/bb72fae4-0709-48f2-8f85-31d0b6a85f68" rel="nofollow">the example from the EF forum</a> and using just Linq-to-Entities against the two entities, is it possible to get EF to generate a SQL query without unnecessary joins and other complexities?</p>
<p>I'd like to see EF generate something a little bit closer to what Linq-to-SQL does for the same kind of queries, while still using Linq against a EF model.</p>
<p><strong>Restrictions:</strong> use EFv1 .net 3.5 SP1 or EFv4 (beta 1 is part of the VS2010/.net4 beta available for download from Microsoft). No CSDL->SSDL mapping tricks, model 'definingqueries', stored procs, db-side functions, or views allowed. Just plain 1:1 mapping between the model and the db and a pure L2E query that does what the original thread on MSDN asked. An association must exist between the two entities (i.e. my "workaround #1" answer to the original thread is not a valid workaround)</p>
<p><strong>Update:</strong> 500pt bounty added. Have fun.</p>
<p><strong>Update:</strong> As mentioned above, a solution that uses EFv4 / .net 4 (β1 or later) is of course eligible for the bounty. If you're using .net 4 post β1, please include build number (e.g. 4.0.20605), the L2E query you used, and the SQL it generated and sent to the DB.</p>
<p><strong>Update:</strong> This issue has been fixed in VS2010 / .net 4 beta 2. Although the generated SQL still has a couple of [relatively harmless] extra levels of nesting, it doesn't do any of the nutty stuff it used to. The final execution plan after SQL Server's optimizer has had a go at it is now as good as it can be. +++ for the dudes and dudettes responsible for the SQL generating part of EFv4...</p>
http://stackoverflow.com/questions/1542875/cool-debugging-of-object1cool debugging of objectcometta2009-10-09T09:49:10Z2009-10-24T20:08:18Z
<p>I just had an idea that I wonder whether is possible in java. Let's say when doing debugging using eclipse or netbeans, you could record an object and save it. Then when going through the second round of debugging, save the object again. Now you could compare the first object recorded with the second object for all properties and find out any differences. Is this possible?</p>
http://stackoverflow.com/questions/1618278/finding-if-a-number-is-a-power-of-2-without-using-modulus-operator-or-division-op1Finding if a number is a power of 2 without using modulus operator or division operator [closed]Ram2009-10-24T15:32:33Z2009-10-24T20:08:00Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br />
<a href="http://stackoverflow.com/questions/600293/how-to-check-if-a-number-is-a-power-of-2">How to check if a number is a power of 2</a> </p>
</blockquote>
<p>Is there a way to find out a given integer is a power of 2 without using the modulus operator or division operator in C/C++ or Java? This leaves us with the shift operators. Any suggestions?</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/1445747/javascript-method-chaining-challenge0JavaScript method chaining challengekizzx22009-09-18T17:03:28Z2009-09-18T18:30:48Z
<p>(This question is not really restricted to the language so please feel free to submit solution in other languages too.)</p>
<p>I was just wondering if it would be possible to write something like this in JavaScript:</p>
<pre><code>// Wait 3 seconds and then say our message in an alert box
wait(3).then(function(){alert("Hello World!");});
</code></pre>
<p>Where the traditional way would be to write</p>
<pre><code>// Wait 3 seconds and then say our message in an alert box
setTimeout(function(){alert("Hello World!");}, 3000);
</code></pre>
<p>Sorry if this is a noob question :p</p>
http://stackoverflow.com/questions/1437443/can-you-create-a-stylesheet-that-will-convert-an-xsd-to-an-xml-copying-stylesheet1Can you create a stylesheet that will convert an XSD to an XML-copying stylesheet?Workshop Alex2009-09-17T08:21:41Z2009-09-17T09:17:10Z
<p>When thinking about <a href="http://stackoverflow.com/questions/1435452/">this question</a>, I realized that this world could use a stylesheet that converts an XSD to a stylesheet, which would copy the contents of an XML file that roughly meets the specifications of the XSD into one that would be valid, according to the XSD.</p>
<p>Well, that's a bit too complex, so the challenge will be a bit simpler... (And this is a wiki, btw.) The trick is the following:</p>
<p><em>Write a stylesheet that extracts all information about elements from an XSD file, which it should use to create a new stylesheet which would copy an XML file node by node, using the correct order in which the nodes must appear in the XSD.</em></p>
<p>My first idea would be that the stylesheet would extract all elements from the XSD first to make templates for all of them. Then, for every child element, it would do an apply-templates for every direct child. And of course it copies the element itself straight to the output. (Including attributes and data.)</p>
<p>The result of the generated output should be identical to the input, with one exceptions: all elements would be in the correct order.</p>
<p>If such a stylesheet would exist, it would not only help the person from the other Q, but quite a few other XML developers too, who sometimes have to deal with XML files that are invalid simply because elements are in the wrong order.</p>
<p><strong>In short, I want an XSLT that converts an XSD to an XSLT which will re-order an XML file into a new XML file, but with everything in the proper order.</strong></p>
http://stackoverflow.com/questions/1326349/code-golf-solve-a-maze4Code Golf: Solve a MazeMatthew Iselin2009-08-25T06:15:02Z2009-08-30T07:42:59Z
<p>Here's an interesting problem to solve in minimal amounts of code. I expect the recursive solutions will be most popular.</p>
<p>We have a maze that's defined as a map of characters, where '=' is a wall, a space is a path, '+' is your starting point, and '#' is your ending point. An incredibly simple example is like so:</p>
<pre><code>====
+ =
= ==
= #
====
</code></pre>
<p>Can you write a program to find the shortest path to solve a maze <em>in this style</em>, in as little code as possible?</p>
<p>Bonus points if it works for all maze inputs, such as those with a path that crosses over itself or with huge numbers of branches. The program should be able to work for large mazes (say, 1024x1024 - 1 MB), and how you pass the maze to the program is not important.</p>
<p>UPDATE: The "player" may move diagonally. The input maze will never have a diagonal passage, so your base set of movements will be up, down, left, right. A diagonal movement would be merely looking ahead a little to determine if a up/down and left/right could be merged.</p>
<p>UPDATE #2: Fixed maximum size.</p>
<p>UPDATE #3: Output must be the maze itself with the shortest path highlighted using the asterisk character (' * ').</p>
http://stackoverflow.com/questions/1310940/selecting-grouping-on-child-list-single-statement-requested0Selecting, Grouping on child list -> Single statement requested.Workshop Alex2009-08-21T09:29:30Z2009-08-21T10:23:09Z
<p>Example: I have an in-memory list of customers. Every customer has a list of orders. Every order has a list of items. Every item has an item-code.</p>
<p>I need to get a list of items grouped by the itemcode, with beneath it the customers who have ordered this item. If a customer ordered an item twice or more, he should still be shown as a single person.</p>
<p>It's a query that I can do but not in a single LINQ command. Can it be done in a single statement? I don't care that it'd be 20 lines, as long as it's a single query.</p>
<p><em>This is a challenge! Don't suggest other solutions.</em> ;-)</p>
http://stackoverflow.com/questions/1280229/triangle-numbers-problem-show-within-4-seconds-5Triangle numbers problem....show within 4 secondsDaredevil2009-08-14T21:05:53Z2009-08-14T22:37:29Z
<blockquote>
<p>The sequence of triangle numbers is
generated by adding the natural
numbers. So the 7th triangle number
would be 1 + 2 + 3 + 4 + 5 + 6 + 7 =
28. The first ten terms would be:</p>
<p>1, 3, 6, 10, 15, 21, 28, 36, 45, 55,
...</p>
<p>Let us list the factors of the first
seven triangle numbers:</p>
<pre><code> 1: 1
3: 1,3
6: 1,2,3,6
10: 1,2,5,10
15: 1,3,5,15
21: 1,3,7,21
28: 1,2,4,7,14,28
</code></pre>
<p>We can see that 28 is the first
triangle number to have over five
divisors.</p>
<p>Given an integer n, display the first
triangle number having at least n
divisors.</p>
<p>Sample Input: 5</p>
<p>Output 28</p>
<p>Input Constraints: 1<=n<=320</p>
</blockquote>
<p>I was obviously able to do this question, but I used a naive algorithm:</p>
<ol>
<li><p>Get <em>n</em>.</p></li>
<li><p>Find triangle numbers and check their number of factors using the mod operator.</p></li>
</ol>
<p>But the challenge was to show the output within 4 seconds of input. On high inputs like 190 and above it took almost 15-16 seconds. Then I tried to put the triangle numbers and their number of factors in a 2d array first and then get the input from the user and search the array. But somehow I couldn't do it: I got a lot of processor faults. Please try doing it with this method and paste the code. Or if there are any better ways, please tell me.</p>
http://stackoverflow.com/questions/183336/what-was-the-funnest-programming-challenge-you-were-ever-tasked-with9What was the funnest programming challenge you were ever tasked with?dicroce2008-10-08T15:18:34Z2009-08-13T08:32:41Z
<p>The funnest thing I ever got paid to do was a compete in a competition. I the "Unix Guy" was tasked with using C# and .NET to build a client/server database application. Our resident "Windows Guy" was given the same specification and tasked with building the same application on Linux with Trolltech QT toolkit. I had NO .NET experience and he had zero Linux experience... I had the app done in 2 days. At two weeks, the boss called the competition done even though my competition wasn't complete yet. This was all done so my boss could prove to the higher ups that .NET was the way to go.</p>
<p>What fun programming tasks have you been paid to complete?</p>
http://stackoverflow.com/questions/1185916/challenge-html-table-to-text1Challenge - HTML Table to Text Ben Shelock2009-07-26T23:51:54Z2009-07-27T04:09:28Z
<p>Not sure if this is an original idea but it seems like a fun idea either way.</p>
<p>Lets see who can convert something like this...</p>
<pre><code><table>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
</table>
</code></pre>
<p>To this...</p>
<pre><code>+-----+-----+-----+
| | | |
| | | |
+-----+-----+-----+
| | | |
| | | |
+-----+-----+-----+
| | | |
| | | |
+-----+-----+-----+
</code></pre>
<p>Ive been thinking about it but my head can't get round it.</p>
http://stackoverflow.com/questions/1106190/algorithm-challenge-generate-color-scheme-from-an-image14Algorithm challenge: Generate color scheme from an imagerinogo2009-07-09T20:10:25Z2009-07-15T05:44:32Z
<h2>Background</h2>
<p>So, I'm working on a fresh iteration of a web app. And, we've found that our users are obsessed with being lazy. Really lazy. In fact, the more work we do for them, the more they love the service. A portion of the existing app requires the user to select a color scheme to use. However, we have an image (a screenshot of the user's website), so why can't we just satiate their laziness and do it for them? Answer: We can, and it will be a fun programming exercise! :)</p>
<h2>The Challenge</h2>
<p><strong>Given an image, how do you create a corresponding color scheme?</strong> In other words, how do you select the primary X colors in an image (where X is defined by the web app). The image used in our particular situation is a screenshot of the user's website, taken at full resolution (e.g. 1280x1024). (Note:Please simply describe your algorithm - there's no need to post actual pseudocode.)</p>
<p>Bonus points (street cred points, not actual SO points) for:</p>
<ul>
<li>Describing an algorithm that is simple yet effective. Code is how we create - keep it simple and beautiful.</li>
<li>Allowing the user to tweak the color scheme according to various 'moods' such as 'Colorful', 'Bright', 'Muted', 'Deep', etc. (a la <a href="http://kuler.adobe.com/#create/fromanimage" rel="nofollow">Kuler</a>)</li>
<li>Describing a method for reliably determining the main <strong>text</strong> color used in the website screenshot (will likely require its own, separate, algo).</li>
</ul>
<h2>Inspiration</h2>
<p>There are several existing sites that perform a similar function. Feel free to check them out and ask yourself, "How would I duplicate this? How could I improve it?"</p>
<ul>
<li><a href="http://www.pictaculous.com/" rel="nofollow">http://www.pictaculous.com/</a></li>
<li><a href="http://www.cssdrive.com/imagepalette/index.php" rel="nofollow">http://www.cssdrive.com/imagepalette/index.php</a></li>
<li><a href="http://kuler.adobe.com/#create/fromanimage" rel="nofollow">http://kuler.adobe.com/#create/fromanimage</a></li>
</ul>
<h1>Have fun! :)</h1>
http://stackoverflow.com/questions/1105229/exam-question-text-messaging2Exam Question Text Messaging [closed]Andrei2009-07-09T17:07:34Z2009-07-09T17:21:28Z
<p>Hi,</p>
<p>Practising for my upcoming exams...one practise question is this. What would be the best approach? Any examples would be of great help. Thanks. -Andrei</p>
<p>Please see the following image as well:</p>
<p><a href="http://img43.imageshack.us/img43/7834/82619337.gif" rel="nofollow">http://img43.imageshack.us/img43/7834/82619337.gif</a></p>
<blockquote>
<p>Each text message is a string of
English capital letters plus white
space. English letters are assigned to
the number keys on a keypad. The
standard keypad layout is shown below
(white space is on the zero key):</p>
<p>[Image 1.]</p>
<p>In order to type a letter, one has to
press the corresponding key multiple
times based on the location of the
letter on that key. If the next letter
to be typed is on the same key as the
current letter, one has to wait for
the current letter to be fixed before
typing the new letter. This is why you
can type “NEW YORK” faster than
“LONDON”. Since white space is the
only character on the 0 key, its
waiting time is zero so there is no
need to wait between keystrokes for
typing multiple whites paces in a row.</p>
<p>The objective of this challenge
is to write a program that calculates
the time it takes to type a message
provided as input. The input message
is between 0 and 160 characters
(inclusive) long. We assume that the
time needed to move fingers between
the keys is negligible. </p>
<p>The following items are passed to the
program as input:</p>
<ul>
<li>Text message.</li>
<li>Time needed to press a key (typing time) – this is the same for all keys.</li>
<li>Waiting time for the letters to be fixed (fixing time) – this is the same
for all keys, except for zero key
whose fixing time is zero.</li>
</ul>
<p>The program should return a single
integer value, which shows the time
required to type the message.</p>
<p>The application should be developed as
a class library and should not have
any graphical, web or console user
interface.The application should not
rely on any relational database.</p>
<p>The application should verify its
results by running the following test
cases:</p>
<p>[Image 3]</p>
<p>It is desirable to have the ability of
changing the layout of the keypad
without recompiling the application.
You may come across a design like
this:</p>
<p>[Image 2]</p>
<p>You can always make the following
assumptions about the keypad:</p>
<ul>
<li>It has 10 keys numbered from 0 to 9.</li>
<li>White space is the only character on the 0 key.</li>
<li>All capital letters are assigned to a key (1 to 9) exactly once.</li>
<li>It is possible to have a key with no letter assignments (like 1 in the
standard keypad or 8 in our strange
keypad).</li>
</ul>
</blockquote>
http://stackoverflow.com/questions/1099971/how-to-turn-a-very-long-column-into-multiple-shorter-ones3How to turn a very long column into multiple shorter ones?Keith Bentrup2009-07-08T19:03:07Z2009-07-09T15:48:24Z
<p>This is a challenge question / problem. Hope you find it interesing.</p>
<p>Scenario: You have a very long list (unreasonably long) in a single column. It would be much better displayed in multiple shorter columns. Using jQuery or another tool, what do you do? </p>
<p>The format of the list is as follows:</p>
<pre><code><div class="toc">
<dl>
<dt>item 1</dt>
<dd>related to 1</dd>
<dt>item 2</dt>
<dd>related to 2</dd>
<dt>item 3</dt>
<dd>related to 3</dd>
<dt>item 4</dt>
<dd>related to 4</dd>
<dt>item 5</dt>
<dd>related to 5</dd>
<dt>item 6</dt>
<dd>related to 6</dd>
<dt>item 7</dt>
<dd>related to 7</dd>
<dt>item 8</dt>
<dd>related to 8</dd>
<dt>item 9</dt>
<dd>related to 9</dd>
<dt>item 10</dt>
<dd>related to 10</dd>
</dl>
</div>
</code></pre>
<p>Caveat: The dd's may contain nested dl's, dt's, & dd's.</p>
<p>Also be sure to keep related items in the same column (ie. if dt 7 is col x, so should dd 7).</p>
<p>This problem inspired by the somewhat ridiculously laid out <a href="http://framework.zend.com/manual/en/" rel="nofollow">Zend Framework manual</a>.</p>
<p><strong>Edit:</strong> See below for answer.</p>
http://stackoverflow.com/questions/1075329/when-have-you-been-put-on-a-new-project-that-was-far-more-challenging-than-anythi1When have you been put on a new project that was far more challenging than anything you'd worked on before?Dan2009-07-02T16:20:44Z2009-07-02T17:57:01Z
<p>I work for a small trading company. It's a very small team of four developers, two of whom -- myself and another guy -- do the coding for the actual algorithms and develop the main application used by the traders.</p>
<p>To be honest, the work we do here is generally very simple from a programming standpoint. The traders come up with a relatively straightforward mathematical idea, we implement it as an algorithm, and then we try it out and tweak it to make it as profitable as we can.</p>
<p>I think the boss considers us to be pretty bright guys, and he is at least somewhat aware of the fact that our normal responsibilities aren't too challenging for either of us. Now just recently he's had this extremely ambitious new idea: he read in some academic journal about "intelligent" trading algorithms that basically learn from the trades they make over time and self-adjust to maximize profit; and he wants us to create our own. And I'm not just talking about tweaking various parameters up or down; this is supposed to detect patterns, identify types of traders (e.g., informed vs. uninformed), basically function as a rudimentary AI.</p>
<p>Needless to say, this is a huge jump in difficulty from what either of us has grown accustomed to doing here. I think we're both enthusiastic about the challenge, but I'm also pretty skeptical about our ability to create this thing in any reasonable amount of time, or even at all (at least as our boss has imagined it).</p>
<p>I'm just wondering who else has had this experience -- of suddenly being assigned to something far more challenging (perhaps even ridiculously so) than any of their previous work for the same company. Were you able to actually achieve what was asked of you? Did you have to scale back the goals of the project to be more realistic? Were you pleased and/or surprised with the end result (if in fact you ever reached it)?</p>
<p>I'm also interested in the personal interactions that might have taken place. Did you tell your boss at the start that it was too much, or did you opt to just bite the bullet and give it a go? If you were working on a team, how did the size and difficulty of the project affect the other developers?</p>
<p>Basically I'm looking for others' perspectives on this situation, and any helpful advice that someone who's been in the same position might have.</p>
http://stackoverflow.com/questions/974313/how-to-css-a-two-column-list-of-items1How to CSS a two column list of items?Alex Angas2009-06-10T08:27:02Z2009-06-10T16:41:13Z
<p>I need to display a two column list of items according to the following rules:</p>
<ul>
<li>Container for the columns has fluid width</li>
<li>Width of both columns needs to be equal</li>
<li>Items are dynamically rendered and at least one will be displayed</li>
<li>Item ordering needs to flow down the left column first, then the right</li>
<li>Items need to line up evenly across the bottom or in the case of an odd number the extra item should show in the left column</li>
</ul>
<p>Here is an example:</p>
<pre><code>~ Item 1 | ~ Item 6
~ Item 2 | ~ Item 7
~ Item 3 | ~ Item 8
~ Item 4 | ~ Item 9
~ Item 5 |
</code></pre>
<p>The HTML can be anything as long as it solves this problem. I'm restricted to using XSLT to wrap HTML around what the server spits out. I have access to two XSLT parameters: one that tells me the current item number and one that tells me how many items there are.</p>
<p>My CSS skills are basic/intermediate and I don't know where to start here. Any ideas on whether this is achievable and how to do it?</p>
<p><strong>Update:</strong></p>
<p>Thanks for the answers. Consensus seems to be either use the <a href="http://www.alistapart.com/articles/multicolumnlists" rel="nofollow">A List Apart</a> article or a table which I'd prefer as it's simpler. The problem with the table is that the server gives me the items in sorted order. To use a table would mean XSLT trickery to re-sort, wouldn't it?</p>
<pre><code><tr>
<td>Item 1</td>
<td>Item 4</td>
</tr>
<tr>
<td>Item 2</td>
<td>Item 5</td>
</tr>
<tr>
<td>Item 3</td>
<td>&nbsp;</td>
</tr>
</code></pre>
http://stackoverflow.com/questions/585721/good-programming-projects-assignments-for-students10Good Programming Projects/Assignments for StudentsRonnie Overby2009-02-25T12:03:59Z2009-05-30T07:43:58Z
<p>I remember when I took my first programming class in the 11th grade in high school. The course was called AP Computer Science. Anyway, the teacher had some very cool and challenging assignments to help us learn.</p>
<p>One of which was a 2D fish tank simulation. The fish in the tank had a sex and other characteristics. Fish were born of other fish, reproduced, swam around, and died. Their were other explicit requirements, but I can't remember them all. But that was a very fun project, and I learned a ton doing stuff like that in the class.</p>
<p>Going through college was a different story. The teachers weren't as creative. We mostly followed examples from a book.</p>
<p>I hope to begin teaching programming courses at the college level in the near future, so I am on the lookout for some good project ideas for students.</p>
<p>What are your most memorable programming challenges that would be good for students (beginner - advanced)? Please give specific details about ideas for projects.</p>
http://stackoverflow.com/questions/570297/lua-challenge-can-you-improve-the-mandelbrot-implementations-performance6Lua Challenge: Can you improve the mandelbrot implementation’s performance?Robert Gould2009-02-20T16:42:37Z2009-05-19T11:19:58Z
<p><strong>Status:</strong> So far the best answer's program executes in 33% of the time of the original program! But there is probably still other ways to optimize it.</p>
<p><hr /></p>
<p>Lua is currently the fastest scripting language out there, however Lua scores really bad in a few benchmarks against C/C++.</p>
<p>One of those is the mandelbrot test (Generate Mandelbrot set portable bitmap file N=16,000), where it scores a horrible 1:109(Multi Core) or 1:28(Single Core)</p>
<p>Since the Delta in speed is quite large, this is a good candidate for optimizations. Also I'm sure some that those who know who Mike Pall is might believe its not possible to optimize this any further, but that's blatantly wrong. Anyone who has done optimizations knows it is always possible to do better. Besides I did manage to get some extra performance with a few tweaks, so I know its possible :)</p>
<pre><code>-- The Computer Language Shootout
-- http://shootout.alioth.debian.org/
-- contributed by Mike Pall
local width = tonumber(arg and arg[1]) or 100
local height, wscale = width, 2/width
local m, limit2 = 50, 4.0
local write, char = io.write, string.char
write("P4\n", width, " ", height, "\n")
for y=0,height-1 do
local Ci = 2*y / height - 1
for xb=0,width-1,8 do
local bits = 0
local xbb = xb+7
for x=xb,xbb < width and xbb or width-1 do
bits = bits + bits
local Zr, Zi, Zrq, Ziq = 0.0, 0.0, 0.0, 0.0
local Cr = x * wscale - 1.5
for i=1,m do
local Zri = Zr*Zi
Zr = Zrq - Ziq + Cr
Zi = Zri + Zri + Ci
Zrq = Zr*Zr
Ziq = Zi*Zi
if Zrq + Ziq > limit2 then
bits = bits + 1
break
end
end
end
if xbb >= width then
for x=width,xbb do bits = bits + bits + 1 end
end
write(char(255-bits))
end
end
</code></pre>
<p>So how could this be optimized (of course as with any optimization you have to measure your implementation to be sure its faster). And you aren't allowed to alter the C-core of Lua for this, or use LuaJit, its about finding ways to optimizing one of Lua's weak weak points.</p>
<p><strong>Edit:</strong> Putting a Bounty on this as to make the challenge more fun.</p>
http://stackoverflow.com/questions/470145/favorite-online-judge-challenge9Favorite Online Judge Challengeunclerojelio2009-01-22T17:43:08Z2009-05-08T13:57:34Z
<p>For years I have visited the <a href="http://icpcres.ecs.baylor.edu/onlinejudge/" rel="nofollow">UVa Online Judge</a> site to practice programming skills and just recently ( thanks to this site ) discovered the <a href="http://www.spoj.pl/" rel="nofollow">Sphere Online Judge</a> site. I am interested to know which challenges from these sites folks here found the most interesting, difficult, satisfying, perplexing, or amusing.</p>
http://stackoverflow.com/questions/800813/what-is-the-most-difficult-challenging-regular-expression-you-have-ever-written3What is the most difficult /challenging regular expression you have ever written ?Rithet2009-04-29T04:01:12Z2009-04-29T14:41:46Z
<p>Whether Regex use with C#, VB.NET, Perl or any language. So, regardless of the language you use, share with us one or two of your challenging regular expression.</p>