Do we really need yet another list of algorithms to memorize for interviews? Is another list going to make a better JavaScript engineer? Will help me understand JavaScript better? Will it help me on the job? Will it make me a faster and better React developer? The obvious answer to all of the above rhetorical questions - fuck no. That being said, it is still a topic of interviews, so I will up-vote bc this is pretty…
JavaScript Algorithms and Data Structures (2018)
31–36 of 36 posts
Re: JavaScript Algorithms and Data Structures (2018)
#32Is there any practical reason use, say, a linked list from this library vs javaScript's native growable array. You can use unshift() to delete in the middle.
Presumably, inserting and removing from the middle of a linked list is much faster than from an array.
Re: JavaScript Algorithms and Data Structures (2018)
#33Earlier quoted context omitted.
Doesn't GOOG go hard in the paint with those questions though?
Not just GOOG, but all of FAANGMULAetc... and smaller start ups as well. Robinhood asked me a dynamic programming leetcode question for their web engineer (front end) role and Bloomberg asked me a OOP design question (asked to code in Python, even though I do not have Python on my resume...interviewer was a Python developer) for a javascript role - both were 1st round phone screens. The tech industry has normalized t…
I’m sure it’s popular. But it’s not everywhere.
Re: JavaScript Algorithms and Data Structures (2018)
#34Is there any practical reason use, say, a linked list from this library vs javaScript's native growable array. You can use unshift() to delete in the middle.
Only the usual reasons to use a linked list. E.g. if you want to store stable references to cells in the linked list as in a linked hash map.
Re: JavaScript Algorithms and Data Structures (2018)
#35Do we really need yet another list of algorithms to memorize for interviews? Is another list going to make a better JavaScript engineer? Will help me understand JavaScript better? Will it help me on the job? Will it make me a faster and better React developer? The obvious answer to all of the above rhetorical questions - fuck no. That being said, it is still a topic of interviews, so I will up-vote bc this is pretty…
Reciting algorithms is reverse gatekeeping. If an employer wants to grill you on them, get out of there.
If I interview someone I don’t go deep into algorithms but I want to know that they know how about binary search or hashmaps. Ignorance of these shows ignorance of the basics of computation.
Re: JavaScript Algorithms and Data Structures (2018)
#36Earlier quoted context omitted.
I've wondered about this -- are such data structures useful? Interviews aside?
Being able to rattle off exactly how any particular data structure is implemented isn't useful for most developers. Being able to reason about algorithms and data structures _is_ useful in day-to-day development. And that does start with having a basic understanding of some subset of them. You can clearly see the impact of computational ignorance on the modern web. JS engines have been optimized to hell and back and…