DEV Community

Discussion on: How you can change the world by learning Algorithms

Collapse
 
nielsbom profile image
Niels Bom

Great article, thanks for this!

I agree that efficient algorithms are important for software and computing in general. That being said I think that a lot of developers, especially in their first years should focus on other things: problem decomposition, program structure, debugging skills, communication.

"However, these accomplishments are only possible if we write software that is fast and can scale."

A lot of developers can write great code and great solutions to big problems even if they don't know about algorithmic complexity. There's definitely a chance that writing inefficient code will bite them some day.

A concern I have is that aspiring programmers will see the algorithmic part of programming and think "this is too much math for me" and decide that they can't be a programmer.

Collapse
 
amejiarosario profile image
Adrian Mejia

Yes, I agree the algorithms shouldn’t be the first topic for very beginners. I recommend to get things working first and optimize later. At some point most developers face scaling issues or need to process large amounts of data efficiency and this when this concepts can help a lot.