Sometimes I'm solving problems on projecteuler.net. Almost all problems are solvable with programs, but these tasks are more mathematical than programmatical.

Maybe someone knows similar sites with:

  • design tasks,
  • architecture tasks,
  • something like "find most elegant C++ solution"?
link|improve this question

43% accept rate
2  
Agreed with the maths point. I got to about Q15 or so before I got bored. I don't think I've ever had to do any coding involving prime numbers IRL anyway... – annakata Mar 19 '09 at 14:05
@annakata: I'm hate tasks with number theory, and just skipping them. Now I sorted taks by ascending difficulty and tring to solveing tasks from page 4 :) It is good trinaining for brain but not for programming skills. – bayda Mar 19 '09 at 14:34
@annakata: Prime number programming is essential in cryptography, and it's very interesting if you read about their application in this field! – Tom Gullen Jun 17 '10 at 10:27
@Tom Gullen - aware of it, but really how often have you rolled your own cryptography? – annakata Jun 18 '10 at 7:48
7  
i dont think any C++ solution will be very elegant.That language is a monster – Ishihara Sep 7 '10 at 19:22
show 2 more comments
feedback

16 Answers

I keep a few bookmarked along with Project Euler.

Update:

I've collected these and links to several other puzzle sites in a blog post: Programming and Logic Puzzles.

link|improve this answer
1  
The link to Mind Cipher is incorrect. – Jichao Jan 24 '10 at 8:45
@jcyang: Looks like they're at the .net TLD, not .com. I had this bookmarked elsewhere under the .com TLD also, so I'm not sure if they were redirecting and let the .com slip or what. Thanks for pointing it out. – Bill the Lizard Jan 24 '10 at 14:58
The Mind Cipher link is no longer calid. – FreeAsInBeer Jul 26 '11 at 0:01
@FreeAsInBeer: Thanks. I can't find the site any longer, so it looks like they took it down. – Bill the Lizard Jul 26 '11 at 0:30
feedback

Google Code Jam

link|improve this answer
+1 and bookmarked. :) – Bill the Lizard Mar 19 '09 at 14:15
feedback

This here is a good one: https://www.spoj.pl/ The performance in the code becomes important too.

link|improve this answer
feedback

I had a great time doing the Python Challenge! I learned Python to solve these challenges, I never regretted it.

link|improve this answer
feedback

I prefer real-world sites like StackOverflow. The problems are more varied and a closer match for something you may actually encounter on the job, and not only do you grow your own skills you help others at the same time.

link|improve this answer
nice site:) but, i like read hard problem and thinking on this long time (about week). StackOverflow is most live and agile place for solve hard problem. But anyway good place for self-upskilling. – bayda Mar 19 '09 at 14:38
I learned how to work with OpenGL and OpenSSL so I could answer questions on here.. – Brendan Long May 19 '10 at 3:31
feedback

It hadn't an update for some time, but might still be interesting: CodeKata

link|improve this answer
+1. Working through CodeKata is a great way to learn a new language or keep your skills fresh in one you already know. – MattK Mar 19 '09 at 14:20
feedback

Here is a fresh one: http://www.javaist.com/rosecode

link|improve this answer
feedback

Try CodeChef

link|improve this answer
feedback

Try2Hack was one of the greatest websites back in the day. I'm not sure if it's the same now (it's been around 10 years I think since I've visited it) but it was great fun at the time.

link|improve this answer
feedback

It's a lot easier to create a web site where your score is based on whether the integer result you give is the correct one, than it is to create a web site which measures design, architecture or elegance.

link|improve this answer
why does it need to measure score at all though? – annakata Mar 19 '09 at 14:04
2  
why does stackoverflow measure reputation? it's part of the 'game' the users of the site play, which makes projecteuler different from other puzzle sites. The question was sites like pe but with design rather than puzzle questions. – Pete Kirkham Mar 19 '09 at 14:30
feedback

Newbie-friendly and just for fun: CodingBat.

link|improve this answer
feedback

For elegant solutions, RefactorMyCode might be useful.

link|improve this answer
seems like alot of the "refactorings" are just "answers", similiar in some ways to SO. – Anonymous Type Sep 2 '10 at 22:22
feedback

Here is the list of online judges and here my choices :

  1. Timus
  2. Google Code Jam
  3. Spoj
  4. Codechef
  5. Harbin
  6. Peking
link|improve this answer
feedback

If you have a Facebook account, try facebook puzzles for more than a dozen or so programming problems. http://www.facebook.com/careers/puzzles.php.

link|improve this answer
feedback

Here'z another list.

link|improve this answer
feedback

For DB http://plsqlchallenge.com/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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