CPP Project and Review

Make a program that'll cook dinner and give me pick up lines when I need it.

Codingame.com has some good puzzles to solve.
It depends on what area of interest you have. Are you interested in UI, client/server, interacting with the web, numerical processing, ...
Years ago I wrote a sudoku solver program in C++ and found that it contained many useful concepts. Play sudoku a little by hand. Then look up (or derive for yourself) some of the common strategies. Then program them into your solver. I think I ended up with 5 strategies. It repeatedly applies the easiest one until the game is solved or the board doesn't change. Then it applies the next hardest one. If it makes progress, then it goes back to the easiest strategy again. Once the first and second don't make any progress, it moves on to the third, etc.
Topic archived. No new replies allowed.