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 …
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 …
25
votes
10answers
1k views
So you think you know pointers?
I was shown this recently, and thought this was a really cool piece of code. Assume 32-bit architecture.
#include <stdio.h>
int main(void) {
int x[4];
printf("%p\n", (void*) (x));
…
14
votes
6answers
547 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 …
12
votes
10answers
843 views
Where do you go to tickle your brain [to get programming challenges]?
I am sure we all have some place to go to get our brain teased!
Sometimes i visit
Project Euler is a series of challenging mathematical/computer programming problems that will require more than …
10
votes
9answers
1k views
Good Programming Projects/Assignments for Students
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 …
9
votes
3answers
282 views
Favorite Online Judge Challenge
For years I have visited the UVa Online Judge site to practice programming skills and just recently ( thanks to this site ) discovered the Sphere Online Judge site. I am interested to know which …
9
votes
16answers
731 views
What was the funnest programming challenge you were ever tasked with?
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 …
8
votes
14answers
662 views
Project Suggestions
I'd like suggestions for a small project to work on this fall. Something I can work on a few hours a week that will keep me entertained and help me learn new things about a particular language, coding …
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 …
7
votes
4answers
1k views
How do I create a recursive query in MSSQL 2005?
Let's say I have the following table:
CustomerID ParentID Name
========== ======== ====
1 null John
2 1 James
3 2 Jenna
4 3 Jennifer
5 …
6
votes
6answers
781 views
What’s the most insidious way to pose this problem?
My best shot so far:
A delivery vehicle needs to make a series of deliveries (d1,d2,...dn), and can do so in any order--in other words, all the possible permutations of the set D = {d1,d2,...dn} …
6
votes
9answers
965 views
Lua Challenge: Can you improve the mandelbrot implementation’s performance?
Status: 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.
Lua is currently the fastest scripting language …
6
votes
28answers
721 views
What type of programming tasks do you find most interesting/challenging?
Some programmers enjoy optimizing code to make the implementation as fast as humanly possible. Others enjoy golfing and trying to make it as compact as possible. Others enjoy metaprogramming and …
5
votes
17answers
982 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, …
