3
votes
12answers
370 views
What’s the most challenging algorithm you ever implemented? [closed]
For me,it's the dijkstra,what about you?
0
votes
0answers
12 views
How to display the Authentication Challenge in UIWebView?
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 …
31
votes
24answers
2k views
Code Golf: Fractran
The Challenge
Write a program that acts as a Fractran interpreter. The shortest interpreter by character count, in any language, is the winner. Your program must take two inputs: The fractran program …
3
votes
8answers
129 views
Challenges of code review with remote team
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 …
0
votes
3answers
72 views
USBCELL - Can anyone program this?
USBCELL rechareable batteries - charged using the USB port
These came out a while back and are worth the money, in my opinion.
I searched around for software specifically made to monitor the battery …
1
vote
4answers
154 views
SQL Call Stored Procedure for each Row
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 without using a Cursor?
7
votes
5answers
228 views
What is a good community run venue for finding programming competitions?
The closure of a recent entertaining 'question' got me wondering what would have been a better forum for the challenge presented. I know there is a similar question, but most of the responses are …
1
vote
7answers
276 views
Finding if a number is a power of 2 without using modulus operator or division operator [closed]
Possible Duplicate:
How to check if a number is a power of 2
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 …
1
vote
3answers
123 views
cool debugging of object
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 …
0
votes
4answers
180 views
JavaScript method chaining challenge
(This question is not really restricted to the language so please feel free to submit solution in other languages too.)
I was just wondering if it would be possible to write something like this in …
1
vote
0answers
53 views
Can you create a stylesheet that will convert an XSD to an XML-copying stylesheet?
When thinking about this question, 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 …
4
votes
5answers
542 views
Code Golf: Solve a Maze
Here's an interesting problem to solve in minimal amounts of code. I expect the recursive solutions will be most popular.
We have a maze that's defined as a map of characters, where '=' is a wall, a …
0
votes
2answers
50 views
Selecting, Grouping on child list -> Single statement requested.
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.
I need to get a list of items grouped by the …
-5
votes
8answers
376 views
Triangle numbers problem…show within 4 seconds
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:
1, 3, 6, …
1
vote
6answers
178 views
Challenge - HTML Table to Text
Not sure if this is an original idea but it seems like a fun idea either way.
Lets see who can convert something like this...
<table>
<tr>
<td></td>
…
