vote up 15 vote down star
9

Duplicate:

Websites like projecteuler.net

I really like the Project Euler website but its emphasis seems to be more on math than programming. While solutions are given in code, the most efficient tend to rely on knowledge of different areas of math.

Is there anything similar that is oriented towards programmers? For (a dumb) example a challenge may be: "Write code to reverse a string", with people then voting on the best solution.

flag
Are you suggesting a site that's similiar in function to Stackoverflow.com, but with a focus on "Code golf"? Interesting... – rwmnau Mar 27 at 21:32
1  
We need no code to reverse a string. And, who would need a reversed string anyway? – alex Mar 27 at 21:34
1  
To reverse a string, you typically need loops, arrays, conditional statements, etc., which can vary greatly from language to language. It's a good exercise on getting acquainted with new syntax and methodologies. – Outlaw Programmer Mar 27 at 21:36
When was the last programming language invented, in which reversing a string is more complicated than 'string.reverse', 'aString reverse.', '(reverse string)', 'string.reverse();' or similar? I don't know any. Well, real programming languages, anyway. – Jörg W Mittag Mar 27 at 23:16
2  
You're missing the point. Reversing a string is just an exercise. In school, they have you implement tons of sorting algorithms even though you'd just use a library call in real code. That doesn't make the exercise any less valuable. – Outlaw Programmer Mar 29 at 19:52

closed as exact duplicate by Can Berk Güder, Bill the Lizard, Hank Gay, Adam Rosenfield, Outlaw Programmer Mar 30 at 4:10

7 Answers

vote up 4 vote down

Ruby Quiz has lots of non-math programming problems. Most of them should work for languages other than Ruby.

link|flag
vote up 5 vote down

You can look at Code Katas, or UVas online judge.

link|flag
vote up 1 vote down

Ruby Quiz (http://www.rubyquiz.com/) sounds similar to what you're looking for, although it's Ruby-specific

link|flag
vote up 2 vote down

http://acm.timus.ru/ is another website with programming problems. Almost all of them are harder than anything in Project Euler.

link|flag
vote up 0 vote down

There is rarely a single "best" solution to a problem like this. Code golf sites will let you find the shortest-source-code solution. Many other sites (ACM, UVA, etc) score based on the efficiency of your solution for known or unknown test cases. Very few sites score for readability, maintainability, robustness, etc.

link|flag
vote up 2 vote down

TopCoder.com

Particularly, go to TopCoder and select Competitions > Algorithm from the menu (or browse around to find the type of competition that interests you). You can go into the arena and view all of the old problems from past competitions once you sign up.

link|flag
I might be missing something, or maybe I just need an account to see it, but is there some particular section? – Brian Mar 27 at 22:24
vote up 0 vote down

It's called coding - get out there and build something ;)

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.