0
votes
1answer
37 views
2 Objects sharing same data - the challenge
Hi,
I have challenged myself to solve the puzzle with the code below.
internal class Link {
public A A { get; set; }
public B B { get; set; }
}
public class A {
Link data;
public A() {
…
3
votes
12answers
372 views
What’s the most challenging algorithm you ever implemented? [closed]
For me,it's the dijkstra,what about you?
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 …
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 …
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 …
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?
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 …
38
votes
15answers
2k views
Where can you find fun/educational programming challenges?
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 …
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 …
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 …
5
votes
17answers
983 views
Eric Lippert’s challenge “comma-quibbling”, best answer?
I wanted to bring this challenege to the attention of the stackoverflow community. The original problem and answers are here. BTW, if you did not follow it before, you should try to read Eric's blog, …
14
votes
6answers
548 views
Algorithm challenge: Generate color scheme from an image
Background
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 …
