Other good resources for basic/intermediate algorithms?

Hi,

I would like some supplemental algorithm practice but the books out there teach very advanced algorithms. Does anyone have some good resources in mind for teaching simple algorithms? It would be great if they came with step by step breakdowns as well to help me really understand each piece.

The best way is to experiment.
If you are doing a for loops that counts 1 to 10.
Try loop it with even numbers.

Try using 2 loops to create a multiplication table.
Try looping with other looping techniques.
Create a text game.

I use codewars.com for practice. You can choose the difficulty level. It doesn’t walk you through them, but once you solve a problem, you can compare your solution to others.

2 Likes