From 64c50bb723776fbbe1a6460d1653ca4d1d16ff26 Mon Sep 17 00:00:00 2001 From: Conner DiPaolo Date: Fri, 2 Jan 2015 09:35:49 -0800 Subject: [PATCH] Moved MIT Google interview course to algorithms section --- README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f188af5..4d0fff5 100644 --- a/README.md +++ b/README.md @@ -120,6 +120,10 @@ Courses ------- ### Algorithms +- [6.INT](http://courses.csail.mit.edu/iap/interview/index.php) **Hacking a Google Interview** *MIT* + - This course taught in the MIT Independent Activities Period in 2009 goes over common solution to common interterview questions for software engineer interviews at highly selective companies like Apple, Google, and Facebook. They cover time complexity, hash tables, binary search trees, and other common algorithm topics you should have already covered in a different course, but goes more in depth on things you wouldn't otherwise learn in class- like bitwise logic and problem solving tricks. + - [Handouts](http://courses.csail.mit.edu/iap/interview/materials.php) + - [Topics Covered](http://courses.csail.mit.edu/iap/interview/calendar.php) - [CSE-373](http://www3.cs.stonybrook.edu/~skiena/373/) **Analysis of Algorithms** *Stony Brook University* - Prof Steven Skiena's no stranger to any student when it comes to algorithms. His seminal [book](http://www.algorist.com/) has been touted by many to be best for [getting that job in Google](http://steve-yegge.blogspot.com/2008/03/get-that-job-at-google.html). In addition, he's also well-known for tutoring students in competitive [programming competitions](http://www.programming-challenges.com/pg.php?page=index). If you're looking to brush up your knowledge on Algorithms, you can't go wrong with this course. - [Lecture Videos](http://www.cs.sunysb.edu/~algorith/video-lectures/) @@ -276,10 +280,7 @@ Courses - [Text Lectures](http://ocw.tufts.edu/Course/75/Learningunits) - [Assignments](http://ocw.tufts.edu/Course/75/Assignments) - [Labs](http://ocw.tufts.edu/Course/75/Labs) -- [6.INT](http://courses.csail.mit.edu/iap/interview/index.php) **Hacking a Google Interview** *MIT* - - This course taught in the MIT Independent Activities Period in 2009 goes over common solution to common interterview questions for software engineer interviews at highly selective companies like Apple, Google, and Facebook. They cover time complexity, hash tables, binary search trees, and other common algorithm topics you should have already covered in a different course, but goes more in depth on things you wouldn't otherwise learn in class- like bitwise logic and problem solving tricks. - - [Handouts](http://courses.csail.mit.edu/iap/interview/materials.php) - - [Topics Covered](http://courses.csail.mit.edu/iap/interview/calendar.php) + -----