interview-question.md
July 15, 2021 · View on GitHub
Bookmarks tagged [interview-question]
www.codever.land/bookmarks/t/interview-question
GitHub - jwasham/coding-interview-university
https://github.com/jwasham/coding-interview-university
A complete computer science study plan to become a software engineer. - jwasham/coding-interview-university
- tags: interview-question, education
- :octocat: source code
kdn251/interviews: Everything you need to know to get the job.
https://github.com/kdn251/interviews
Your personal guide to Software Engineering technical interviews.
- tags: java, interview-question
- :octocat: source code
Master the JavaScript Interview: What is a Pure Function?
https://medium.com/javascript-scene/master-the-javascript-interview-what-is-a-pure-function-d1c076be...
Pure functions are essential for a variety of purposes, including functional programming, reliable concurrency, and React+Redux apps. But what does “pure function” mean?
- tags: javascript, interview-question
Memoization and Dynamic Programming | Interview Cake
https://www.interviewcake.com/concept/python/memoization
Memoization ensures that a function doesn't run for the same inputs more than once by keeping a record of the results for given inputs (usually in a dictionary).