I am looking for a set of programming challenges that'll help sharpen my algorithmic skills.<p>I've worked a bit with CodeChef and SPOJ. Both have problems that test problem solving abilities of varied nature.<p>However, I am unable to decide which one to follow through with. So I decided to ask the community.<p>What resources would you suggest for improving my thinking/algorithmic skills? Something, that'll have problems spanning all the fundamental concepts.<p>I am a student of Computer Science Engineering, and I'm not new to programming or algorithms; though I'm a far cry from being an expert.<p>I had tried my hand at Project Euler too, but you can get through those problems with sub-optimal solutions. For eg. the first problem's solution can be arrived by at by using an O(1) algorithm, but the system would accept a solution generated using an O(n) algorithm too. That wouldn't motivate deep thinking.
(http://projecteuler.net/problem=1)
Keep going with Project Euler. It's not long before the brute force approach stops working. On later problems you will find many ways to solve them but very few that return an answer in less than a week, say.
Add solutions to problems at <a href="http://rosettacode.org" rel="nofollow">http://rosettacode.org</a>. Even if your solution is suboptimal, someone is likely to come along and improve it. Or create a totally new problem and solve it in your language of choice.
I can recommend Rosalind <a href="http://rosalind.info/problems/locations/" rel="nofollow">http://rosalind.info/problems/locations/</a><p>It has bioinformatics problems. They start really easy ("count the bases in a DNA sequence") and get progressively harder.<p>For each problem you get some sample data to work with. When you think you've figured it out, you can download a dataset to run your algorithm against, then upload the output to see if you are correct. There's a time limit for submission, and although you can keep re-trying, the data sets are different each time.<p>Check it out! Don't let the bioinformatics part throw you off.
I highly recommend the book "Programming Challenges" by Steven Skiena, used in conjunction with UVA Online Judge at <a href="http://onlinejudge.org" rel="nofollow">http://onlinejudge.org</a>.<p>Each challenge takes the form of a word problem. The solution can be coded in a few different languages and uploaded to the website.<p>The site imposes time limits when running the solution. When I've found that my solution works but is too slow, it has encouraged me to look for different data structures or algorithms.<p>I can't recommend it enough.
Someone on HN posted the Martyr2's mega project list: <a href="https://github.com/thekarangoel/Projects" rel="nofollow">https://github.com/thekarangoel/Projects</a><p>You could take some inspiration from it.
Both codechef and SPOJ are good enough , focusing on one will be a good strategy. You may give a try to interviewstreet as well. But like I said mastering problems on any one of the sites is sufficient .
You can only brute force the first handful of Project Euler problems. You quickly hit problems where the difference between the right and wrong approach is seconds vs hours or days.