Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Suggest websites to practice C/C++ algorithms/puzzles [closed]

Tags:

I want to practice problem solving in C/C++. But I want to avoid writing the whole program from scratch. Is there any website where they give me puzzles and the code skeleton along with it and expect me to only fill a function or two to solve the problem at hand? This would save a lot of time and I can concentrate only on the problem solving part.

Thanks.

like image 526
Kaniks Avatar asked Jul 24 '12 14:07

Kaniks


1 Answers

Advent of Code posts new problems every year starting on Dec 1. The problems have a Christmas-themed story, involving Santa Claus and his elves. There are leader boards so you can compete with your friends. You can also revisit previous years problems and solve them.

Project Euler has almost 400 programming puzzles. There are no frameworks, but the first few puzzles are simple enough that this shouldn't be a problem.

TopCoder Is an online coding competition site. You can open past problems in their competition arena applet for practice. All you need to do is write the one function described in the problem. However, the problems have a wide range of difficulty. Even the easiest ones are more difficult than the beginning ones at Project Euler.

like image 116
Code-Apprentice Avatar answered Sep 21 '22 05:09

Code-Apprentice