Skip to content

Commit 9c27d54

Browse files
author
John Washam
committed
Merge remote-tracking branch 'origin/main'
2 parents 573fdb3 + f5eb63d commit 9c27d54

6 files changed

+336
-368
lines changed

README.md

+7-3
Original file line numberDiff line numberDiff line change
@@ -925,8 +925,8 @@ Graphs can be used to represent many problems in computer science, so this secti
925925
- [ ] [Depth-First Search](https://www.youtube.com/watch?v=IBfWDYSffUU&t=32s&ab_channel=MITOpenCourseWare)
926926

927927
- [ ] Skiena Lectures - great intro:
928-
- [ ] [CSE373 2020 - Lecture 11 - Graph Data Structures (video)](https://www.youtube.com/watch?v=Sjk0xqWWPCc&list=PLOtl7M3yp-DX6ic0HGT0PUX_wiNmkWkXx&index=10)
929-
- [ ] [CSE373 2020 - Lecture 12 - Graph Traversal (video)](https://www.youtube.com/watch?v=ZTwjXj81NVY&list=PLOtl7M3yp-DX6ic0HGT0PUX_wiNmkWkXx&index=11)
928+
- [ ] [CSE373 2020 - Lecture 10 - Graph Data Structures (video)](https://www.youtube.com/watch?v=Sjk0xqWWPCc&list=PLOtl7M3yp-DX6ic0HGT0PUX_wiNmkWkXx&index=10)
929+
- [ ] [CSE373 2020 - Lecture 11 - Graph Traversal (video)](https://www.youtube.com/watch?v=ZTwjXj81NVY&list=PLOtl7M3yp-DX6ic0HGT0PUX_wiNmkWkXx&index=11)
930930
- [ ] [CSE373 2020 - Lecture 12 - Depth First Search (video)](https://www.youtube.com/watch?v=KyordYB3BOs&list=PLOtl7M3yp-DX6ic0HGT0PUX_wiNmkWkXx&index=12)
931931
- [ ] [CSE373 2020 - Lecture 13 - Minimum Spanning Trees (video)](https://www.youtube.com/watch?v=oolm2VnJUKw&list=PLOtl7M3yp-DX6ic0HGT0PUX_wiNmkWkXx&index=13)
932932
- [ ] [CSE373 2020 - Lecture 14 - Minimum Spanning Trees (con't) (video)](https://www.youtube.com/watch?v=RktgPx0MarY&list=PLOtl7M3yp-DX6ic0HGT0PUX_wiNmkWkXx&index=14)
@@ -977,7 +977,9 @@ Graphs can be used to represent many problems in computer science, so this secti
977977
- How is tail recursion better than not?
978978
- [ ] [What Is Tail Recursion Why Is It So Bad?](https://www.quora.com/What-is-tail-recursion-Why-is-it-so-bad)
979979
- [ ] [Tail Recursion (video)](https://www.coursera.org/lecture/programming-languages/tail-recursion-YZic1)
980-
980+
981+
Backtracking Blueprint: [Java](https://leetcode.com/problems/combination-sum/discuss/16502/A-general-approach-to-backtracking-questions-in-Java-(Subsets-Permutations-Combination-Sum-Palindrome-Partitioning))
982+
[Python](https://leetcode.com/problems/combination-sum/discuss/429538/General-Backtracking-questions-solutions-in-Python-for-reference-%3A)
981983
- ### Dynamic Programming
982984
- You probably won't see any dynamic programming problems in your interview, but it's worth being able to recognize a
983985
problem as being a candidate for dynamic programming.
@@ -1216,6 +1218,8 @@ Graphs can be used to represent many problems in computer science, so this secti
12161218
- [How to Create or Check if your Resume is ATS Compliant](https://ayedot.com/97/MiniBlog/Meaning-of-ATS-compliant-resume-and-How-to-create-ATS-Resume-for-Free)
12171219
- ["This Is What A GOOD Resume Should Look Like" by Gayle McDowell (author of Cracking the Coding Interview)](https://www.careercup.com/resume),
12181220
- Note by the author: "This is for a US-focused resume. CVs for India and other countries have different expectations, although many of the points will be the same."
1221+
- ["Step-by-step resume guide" by Tech Interview Handbook](https://www.techinterviewhandbook.org/resume/guide)
1222+
- Detailed guide on how to set up your resume from scratch, write effective resume content, optimize it, and test your resume
12191223

12201224

12211225
## Find a Job

programming-language-resources.md

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
- [Review of C++ concepts (video)](https://www.youtube.com/watch?v=Rub-JsjMhWY)
3434
- [Let us C++](https://books.google.co.in/books/about/Let_Us_C++.html?id=6HrjAAAACAAJ)
3535
- [C++ Primer](https://books.google.co.in/books/about/C++_Primer.html?id=J1HMLyxqJfgC&redir_esc=y)
36+
- [C++ Tutorial for Beginners](https://www.youtube.com/watch?v=vLnPwxZdW4Y)
3637
- Python
3738
- [Python Cheat Sheet](https://github.com/jwasham/coding-interview-university/blob/main/extras/cheat%20sheets/python-cheat-sheet-v1.pdf)
3839
- [Python in One Video](https://www.youtube.com/watch?v=N4mEzFDjqtA)

translations/README-bg.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -1716,9 +1716,8 @@ Mock интервюта:
17161716

17171717
- ### k-D Trees
17181718

1719-
- Great for finding number of points in a rectangle or higher dimension object
1720-
- A good fit for k-nearest neighbors
1721-
- [Kd Trees (video)](https://www.youtube.com/watch?v=W94M9D_yXKk)
1719+
- Подходящи за намиране на брой точки в квадратен или по-висш по размерност обект
1720+
- Подходящи за к-ти близки съседи
17221721
- [kNN K-d tree algorithm (video)](https://www.youtube.com/watch?v=Y4ZgLlDfKDg)
17231722

17241723
- ### Skip lists

0 commit comments

Comments
 (0)