From 739cca197669ab60816f9953ab0c9b07258c0200 Mon Sep 17 00:00:00 2001 From: Utsav Pandey Date: Fri, 3 Mar 2017 00:08:51 -0800 Subject: [PATCH 1/2] Add sorting algorithm video link --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index abc48fa..a74f68d 100644 --- a/README.md +++ b/README.md @@ -819,6 +819,7 @@ Write code on a whiteboard or paper, not a computer. Test with some sample input - [ ] [Randomization: Matrix Multiply, Quicksort, Freivalds' algorithm (video)](https://www.youtube.com/watch?v=cNB2lADK3_s&index=8&list=PLUl4u3cNGP6317WaSNfmCvGym2ucw3oGp) - [ ] [Sorting in Linear Time (video)](https://www.youtube.com/watch?v=pOKy3RZbSws&list=PLUl4u3cNGP61hsJNdULdudlRL493b-XZf&index=14) +As a summary, here is a visual representation of [15 sorting algorithms](https://www.youtube.com/watch?v=kPRA0W1kECg). If you need more detail on this subject, see "Sorting" section in [Additional Detail on Some Subjects](#additional-detail-on-some-subjects) ## Graphs From 7531288439f3220d86960dd386430275be1ab540 Mon Sep 17 00:00:00 2001 From: bronzdoc Date: Sat, 4 Mar 2017 21:46:07 -0600 Subject: [PATCH 2/2] Adding "Design patterns for humans" link --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index a74f68d..4e324de 100644 --- a/README.md +++ b/README.md @@ -966,6 +966,8 @@ You'll get more graph practice in Skiena's book (see Books section below) and th - [ ] [Head First Design Patterns](https://www.amazon.com/Head-First-Design-Patterns-Freeman/dp/0596007124) - I know the canonical book is "Design Patterns: Elements of Reusable Object-Oriented Software", but Head First is great for beginners to OO. - [ ] [Handy reference: 101 Design Patterns & Tips for Developers](https://sourcemaking.com/design-patterns-and-tips) + - [ ] [Design patterns for humans](https://github.com/kamranahmedse/design-patterns-for-humans#structural-design-patterns) + - ### Combinatorics (n choose k) & Probability - [ ] [Math Skills: How to find Factorial, Permutation and Combination (Choose) (video)](https://www.youtube.com/watch?v=8RRo6Ti9d0U)