├── LICENSE └── README.md /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 devBetter.com 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Tech Interview Resources 2 | 3 | ## Programming Resources 4 | 5 | - [Algorithm Implementations](https://github.com/kevinknowscs/ProgrammingPractice) 6 | 7 | ## Code Interview Resources 8 | 9 | - [Grind75 Questions](https://www.techinterviewhandbook.org/grind75) 10 | - [Patrick McKenzie Greatest Hits](https://www.kalzumeus.com/greatest-hits/) 11 | - [AlgoMonster](https://algo.monster/) 12 | - [Cracking The Coding Interview](https://www.crackingthecodinginterview.com/) 13 | - [Grokking Algorithms](https://www.manning.com/books/grokking-algorithms) 14 | - [Grokking the Coding Interview](https://www.educative.io/courses/grokking-the-coding-interview) 15 | 16 | ## System Design Interview Resources 17 | 18 | - [System Design Interview Vol 1](https://www.amazon.com/System-Design-Interview-insiders-Second/dp/B08CMF2CQF/ref=pd_bxgy_sccl_2/144-7707083-3060947?pd_rd_w=fSgCI&content-id=amzn1.sym.7757a8b5-874e-4a67-9d85-54ed32f01737&pf_rd_p=7757a8b5-874e-4a67-9d85-54ed32f01737&pf_rd_r=1SG0MXZM1VGTDMPW062D&pd_rd_wg=fjL25&pd_rd_r=4b0d115e-ce2a-4daa-8851-e88c034bfc32&pd_rd_i=B08CMF2CQF&psc=1) 19 | - [System Design Interview Vol 2](https://www.amazon.com/System-Design-Interview-Insiders-Guide/dp/1736049119/ref=sr_1_1?crid=FMO5Z25ZQGHA&keywords=system+design+interview&qid=1656639064&sprefix=system%2Caps%2C96&sr=8-1) 20 | - [Designing Data-Intensive Applications](https://www.amazon.com/Designing-Data-Intensive-Applications-Reliable-Maintainable/dp/1449373321/ref=pd_bxgy_img_sccl_2/144-7707083-3060947?pd_rd_w=zsC7V&content-id=amzn1.sym.7757a8b5-874e-4a67-9d85-54ed32f01737&pf_rd_p=7757a8b5-874e-4a67-9d85-54ed32f01737&pf_rd_r=XV29Q4VVWMZ2QJ47KSKG&pd_rd_wg=BJzF1&pd_rd_r=c08f310e-8ba1-4913-83e8-0fd79dbc8aa4&pd_rd_i=1449373321&psc=1) 21 | - [Understanding Distributed Systems](https://www.amazon.com/Understanding-Distributed-Systems-Second-applications/dp/1838430210/ref=sr_1_1?keywords=understanding+distributed+systems&qid=1656639375&sprefix=understand%2Caps%2C81&sr=8-1) 22 | - [Web Scalability for Startup Engineers](https://www.amazon.com/Scalability-Startup-Engineers-Artur-Ejsmont/dp/0071843655/ref=sr_1_1?crid=30MDVFX85C8N1&keywords=web+scalability+for+startup+engineers&qid=1656639131&sprefix=web+sca%2Caps%2C78&sr=8-1) 23 | --------------------------------------------------------------------------------