Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 2.1 KB

interview-question.md

File metadata and controls

32 lines (25 loc) · 2.1 KB

Bookmarks tagged [interview-question]

https://github.com/jwasham/coding-interview-university

A complete computer science study plan to become a software engineer. - jwasham/coding-interview-university


https://github.com/kdn251/interviews

Your personal guide to Software Engineering technical interviews.


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?


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).