up vote 21 down vote favorite
14
share [g+] share [fb]

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.

link|improve this question
Are you suggesting a site that's similiar in function to Stackoverflow.com, but with a focus on "Code golf"? Interesting... – rwmnau Mar 27 '09 at 21:32
3  
We need no code to reverse a string. And, who would need a reversed string anyway? – alex Mar 27 '09 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 '09 at 21:36
2  
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 '09 at 23:16
7  
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 '09 at 19:52
show 1 more comment
feedback

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

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ.

7 Answers

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

link|improve this answer
feedback

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|improve this answer
I might be missing something, or maybe I just need an account to see it, but is there some particular section? – Brian Mar 27 '09 at 22:24
This is a great option, also a good answer for the other question about how to become a "faster" programmer. I know some coders look down on solving algorithms but it really is the simplest way to improve your core math and logic design skills in the context of a programming language. – Anonymous Type Sep 2 '10 at 22:59
feedback

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

link|improve this answer
feedback

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

link|improve this answer
feedback

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

link|improve this answer
feedback

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|improve this answer
feedback

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

link|improve this answer
best answer - there is no substitute for "just doing it". – Anonymous Type Sep 2 '10 at 23:00
feedback

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