- Steven Skiena – The Algorithm Design Manual
- Udi Manber – Introduction to Algorithms: A Creative Approach
- Cormen, Leiserson, Rivest, Stein – Introduction to Algorithms
- Sedgewick, Wayne – Algorithms
- Antti Laaksonen – Competitive Programmer's Handbook
- Steven & Felix Halim – Competitive Programming
- Jon Bentley – Programming Pearls
- E-Maxx Algorithms
- vhf/free-programming-books
- it-ebooks.info
- S. Dasgupta, C. H. Papadimitriou, and U. V. Vazirani -Algorithms
- LeetCode
- LeetCode w/ Explanations labuladong/fucking-algorithm
- InterviewBit
- Codility
- HackerRank
- Project Euler
- Spoj
- Google Code Jam practice problems
- HackerEarth
- Top Coder
- CodeChef
- Codewars
- CodeSignal
- CodeKata
- Firecode
- GeeksForGeeks – A CS portal for geeks
- Learneroo – Algorithms
- Top Coder tutorials
- Infoarena training path (RO)
- Steven & Felix Halim – Increasing the Lower Bound of Programming Contests (UVA Online Judge)
- Top 10 Algorithms in Interview Questions
- Hard interview questions that have a short recursive solution
- Grow Your Technical Skills with Google
- Steve Yegge – Get That Job at Google
- Steve Yegge – Ten Tips for a (Slightly) Less Awful Resume
- Carlos Bueno – Get That Job at Facebook
- Daniel Blumenthal – How to Prepare for Technical Interviews
- David Byttow – ABC: Always Be Coding
- David Byttow – Four Steps to Google, Without a Degree
- Thomas L. Friedman – How to Get a Job at Google [part 1] [part 2]
- Andrew Rothbart – Preparing for a technical interview with programming contests
- Mina Azib – Resources for Preparing for the Google Interview
- u/RunninADorito – How to Prepare for Tech Interviews
- Bill Sourour – How To Win the Coding Interview
- Ammon Bartram – How To Pass a Programming Interview
- MIT – Hacking a Google Interview
- Algorithms: Design and Analysis
- Algorithms and Data Structures - Part 1
- Algorithms and Data Structures - Part 2
- interviewing.io
- Pramp "Practice coding interviews for free"
- Refdash
- Gainlo
- Candidacy.io
- Skilled
- Gainlo
- How to prepare for my Google/Facebook interview if I have 6 months left?
- How should I prepare for my Google interview if I have 1 month left?
- What is the best advice for an engineering internship interview at Google or Facebook?
- What graph topics should I study in order to be adequately prepared for a Google Software Engineer interview?
- Coding for Interviews
- Career Cup
- HiredInTech
- Codela
- TestDome
- FreeCodeCamp "Learn to code and help nonprofits"
- Dynamic Programming Practice Problems
- Codility Lessons
- Introduction to Theoretical Computer Science
- How to: Work at Google – Candidate Coaching Session for Technical Interviewing [45:45]
- Gayle McDowell – Cracking the Coding Interview [1:14:24]
- Gayle McDowell - Cracking the Coding Interview (examples) [9:05]
- Google Recruiters Share Technical Interview Tips [31:06]
- Google Recruiters Share Non-Technical Interview Tips [28:23]
- Moishe Lettvin – What I Learned Doing 250 Interviews at Google [1:00:24]
- Sean Lee – How to Get a Job at the Big 4 [42:34]
- Ladies Storm Hackathons – Interview Prep Round 1: Strings, Arrays, Linked Lists [1:12:39]
- Randall Koutnik – Rethinking the Developer Career Path [25:03]
- Free books by Dr. Axel Rauschmayer
- You Don't Know JS
- Superhero.js
- h5bp/Front-end-Developer-Interview-Questions
- The Hitchhiker's Guide to Python
- quantifiedcode/python-anti-patterns
- The Insider's Guide to Python Interviewing
- Book: Elements of Programming Interviews in Python
- MIT - Mathematics for Computer Science
- Graham, Knuth, Patashnik – Concrete Mathematics: A Foundation for Computer Science
- Bogart, Drysdale, Stein – Discrete Math for Computer Science Students
- Joyent – TCP Puzzlers
- Andrew Tanenbaum – Computer Networks
- Kurose, Ross – Computer Networking: A Top-Down Approach
- W. Richard Stevens – TCP/IP Illustrated, Vol. 1: The Protocols
- W. Richard Stevens – UNIX Netowrk Programming
- donnemartin/system-design-primer
- binhnguyennus/awesome-scalability
- Architecture of Open Source Applications
- How should I prepare system design questions for Google/Facebook interview?
- MaximAbramchuck/awesome-interview-questions
- donnemartin/interactive-coding-challenges
- schmatz/cs-interview-guide
- mission-peace/interview
- prakhar1989/awesome-courses
- SITZ/JobPuzzles
- davidhampgonsalves/interview-resources
- blakeembrey/code-problems
- ChiperSoft/InterviewThis
- ruby-jokes/job_interview
- what-happens-when
- poteto/hiring-without-whiteboards
- liwei606/interview
- yangshun/tech-interview-handbook
- leetcode
- leetcode premium
- this pdf
- cracking the coding interview
- here
- topcoder
- back to back swe youtube channel
- solutions
- leetcode discuss
- grokking the coding interview
- issue
- blind 75 list
- 14 patterns to ace any coding interview question
tree -d -L 4
.
├── DS-n-Algos
│ ├── 0-TESTING-RESOURCES
│ │ └── main-data
│ ├── ALGO
│ │ ├── binary_search_project
│ │ │ ├── lib
│ │ │ └── test
│ │ ├── coin-change
│ │ │ ├── MINchange
│ │ │ ├── coinchange-memoized
│ │ │ └── itterative-4-fun
│ │ ├── memoization_project
│ │ │ ├── lib
│ │ │ └── test
│ │ └── tabulation_project
│ │ ├── lib
│ │ └── test
│ ├── Arrays
│ │ ├── 53-max-subArr
│ │ ├── All Unique
│ │ │ └── test
│ │ ├── Array-Flatten
│ │ ├── Intersection
│ │ ├── Transpose-2-d-array
│ │ ├── all
│ │ ├── append-arr
│ │ ├── array-helpers
│ │ ├── array-of-cumulative-partial-sums
│ │ ├── array-of-nums-in-range
│ │ ├── atleast
│ │ ├── average
│ │ ├── convert-2-js-arr
│ │ ├── deep-map
│ │ ├── difference-between-arrays
│ │ ├── flatten
│ │ ├── python
│ │ │ ├── sum-arr-dir
│ │ │ └── sum-avg
│ │ ├── resize-array
│ │ └── stringify-arr
│ ├── Binary-Search-Trees
│ │ ├── Binary-Search-Tree
│ │ ├── leetcode-450-delete-bst-node
│ │ └── leetcode108-sorted-arr-2-bst
│ ├── Binary-Trees
│ │ ├── 105-construct-b-tree
│ │ ├── leetcode110-balanced-bin-tree
│ │ └── tree_order_project
│ │ ├── lib
│ │ └── test
│ ├── Fifo-Lifo
│ │ ├── queue_project
│ │ │ ├── lib
│ │ │ └── test
│ │ ├── stack_project
│ │ │ ├── lib
│ │ │ └── test
│ │ └── stack_queue_interview_problems
│ │ ├── lib
│ │ └── test
│ ├── File-System
│ │ ├── file-name-from-path
│ │ ├── is-valid-file-name
│ │ └── recursive-read-folder
│ ├── Graphs
│ │ ├── graph_project
│ │ │ ├── lib
│ │ │ └── test
│ │ ├── graphs-intro-solution
│ │ │ ├── problems
│ │ │ └── test
│ │ └── graphs-solution
│ │ ├── problems
│ │ └── test
│ ├── Lists
│ │ ├── linked_list_interview_problems
│ │ │ ├── lib
│ │ │ └── test
│ │ └── linked_list_project
│ │ ├── lib
│ │ └── test
│ ├── Misc
│ │ ├── console.table
│ │ ├── heaps_project
│ │ │ ├── lib
│ │ │ └── test
│ │ ├── is-reserved-wordJS
│ │ ├── type-checker
│ │ └── whiteboarding
│ ├── Numbers_Math
│ │ ├── C++
│ │ ├── base-converter
│ │ └── isBase
│ ├── POJOs
│ │ └── obj2Array
│ ├── Recursion
│ │ ├── fibonacci
│ │ │ └── __test__
│ │ ├── fibonacci-versions
│ │ ├── longest-common-subsequence
│ │ │ └── __test__
│ │ ├── lucas-num-versions
│ │ └── recursion_project
│ │ ├── lib
│ │ └── test
│ ├── Sorting-n-Searching
│ │ ├── 1-searching-algorithms
│ │ │ └── depth_breadth_first_project
│ │ └── 2-sorting-algorithms
│ │ ├── bubble_sort_project
│ │ ├── counting_sort_project
│ │ ├── insertion_sort_project
│ │ ├── merge_sort_project
│ │ ├── quick_sort_project
│ │ ├── radix_sort_project
│ │ └── selection_sort_project
│ ├── Strings
│ │ ├── 03-lengthOfLongestSubString
│ │ ├── C++
│ │ └── string-helpers
│ ├── Utilities-Snippets
│ │ ├── general-utils
│ │ └── whitespace-identifier
│ ├── async
│ │ ├── async_await
│ │ ├── choosing_the_right_approach
│ │ ├── concepts
│ │ ├── introducing
│ │ ├── promises
│ │ └── timeouts_and_intervals
│ ├── functions
│ │ ├── HASH
│ │ ├── MemoizeFunc
│ │ ├── bindTo
│ │ └── call-closure
│ ├── java-data-structure-examples
│ │ ├── actual-java-code
│ │ │ └── strings
│ │ └── java-data-structures
│ ├── web-dev
│ │ ├── html-2-text
│ │ ├── listenForEvent-s
│ │ └── tagify-arr
│ └── z-NOTES
│ └── data-structures
├── Resources
│ ├── My-Data-Structures-Notes
│ └── _Articles
│ ├── algorithmic-thinking
│ ├── algorithms
│ ├── data-structures
│ ├── dynamic_programming
│ │ └── pictures
│ ├── js-documentation
│ ├── recursion
│ └── runtime-complexity
└── assets
157 directories
137 directories
\___________________________________________________
bryan_dir:DS-and-Algorithms-Prac_exitstatus:0 ====>
```