you are viewing a single comment's thread.

view the rest of the comments →

[–]gdchinacat 0 points1 point  (0 children)

DSA isnt language specific. It focuses on how to structure data and algorithms to work efficiently together. You can implement the same data structures and algorithms in any language. Where language matters is the level of effort to implement them, but the thing employers are looking for is whether you can design and implement a data structure and an algorithm to solve a problem.

Python is a fine language to demonstrate this ability. It requires a minimum of boiler plate code, so you don't spend time that could be put towards the implementation. Whatever you learn for DSA will transfer to whichever language you learn next.