interview material
Articles
Recommended: Steve Yegge – Get That Job at Google [web]
- Carlos Bueno – Get That Job at Facebook [web]
- Daniel Blumenthal – How to Prepare for Technical Interviews [web]
- David Byttow – ABC: Always Be Coding [web]
- David Byttow – Four Steps to Google, Without a Degree [web]
- Thomas L. Friedman – How to Get a Job at Google [part 1] [part 2]
- Andrew Rothbart – Preparing for a technical interview with programming contests [web]
- Steve Yegge – Ten Tips for a (Slightly) Less Awful Resume [web]
Algorithms
Recommended: Steven Skiena – The Algorithm Design Manual [Amazon] [pdf] [web]
- Jon Bentley – Programming Pearls [Amazon] [web (full text)]
- Cormen, Leiserson, Rivest, Stein – Introduction to Algorithms [Amazon] [pdf]
- more – Free Programming Books (giant collection) [Github]
- more – IT eBooks [web]
- more – Free Programming Books [web]
Please support the authors by buying the books.
Coding
Recommended: Talentbuddy [web] [free app]
- Coderust (great selection of problems) [$10 app]
- Hacker Rank [web]
- Interview Cake [web]
- HackerEarth [web]
- HiredInTech [web]
- Project Euler [web]
- Google Code Jam practice problems [web]
- Top Coder tutorials [web]
- Infoarena training path (RO) [web]
- LeetCode Online Judge [web]
- more – Free Programming Resources [web]
- more - Web Resources and Tutorials That Don't Suck [web]
Guides
Recommended (resume): Gayle McDowell – The Google Resume [Amazon] [pdf]
Recommended (interview): Gayle McDowell – Cracking the Coding Interview [Amazon] [pdf]
- CareerCup [web]
- Coding for Interviews [web]
- Here's How to Prepare for Tech Interviews [reddit]
- Programming Interviews Exposed [Amazon] [pdf]
- Elements of Programming Interviews [Amazon] [web]
Quora:
- 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?
Language-specific
JavaScript
Python
Maths
Recommended: MIT - Mathematics for Computer Science [Youtube] [web]
Meta
Quora
Questions
Recommended: MIT – Hacking a Google Interview [web]
- Computer Science Primer / Interview Questions [web]
- Programming Interview Questions [web]
- Prismo-Skills [web]
- Jeff Atwood – How Good an Estimator Are You? [web]
- Daniel Blumenthal – Questions I Want to Ask, but Can't [web]
- Steve Yegge – The Five Essential Phone-Screen Questions [web]
Systems Design
Quora
Unix
Quora
Videos
Recommended: Candidate Coaching Session: Tech Interviewing [Youtube]
- Gayle McDowell – Cracking the Coding Interview [Youtube]
- Gayle McDowell - Cracking the Coding Interview (examples) [one] [two]
- Hangouts on Air: Google Recruiters Share Interview Tips [technical] [non-technical]
Similar Github repos
interview material的更多相关文章
- Inhouse interview(websense)
1.Tell me about yourself? My name is xxx,i 'm from xxx. now , I am a postgratuation and my major sub ...
- 300+ Manual Testing and Selenium Interview Questions and Answers
Manual testing is a logical approach and automation testing complements it. So both are mandatory an ...
- Pramp mock interview (4th practice): Matrix Spiral Print
March 16, 2016 Problem statement:Given a 2D array (matrix) named M, print all items of M in a spiral ...
- Material Design Reveal effect(揭示效果) 你可能见过但是叫不出名字的小效果
Material Design Reveal effect(揭示效果) 你可能见过但是叫不出名字的小效果 前言: 每次写之前都会来一段(废)话.{心塞...} Google Play首页两个tab背景 ...
- Cesium原理篇:Material
Shader 首先,在本文开始前,我们先普及一下材质的概念,这里推荐材质,普及材质的内容都是截取自该网站,我觉得他写的已经够好了.在开始普及概念前,推荐一首我此刻想到的歌<光---陈粒>. ...
- WCF学习系列二---【WCF Interview Questions – Part 2 翻译系列】
http://www.topwcftutorials.net/2012/09/wcf-faqs-part2.html WCF Interview Questions – Part 2 This WCF ...
- WCF学习系列一【WCF Interview Questions-Part 1 翻译系列】
http://www.topwcftutorials.net/2012/08/wcf-faqs-part1.html WCF Interview Questions – Part 1 This WCF ...
- Amazon Interview | Set 27
Amazon Interview | Set 27 Hi, I was recently interviewed for SDE1 position for Amazon and got select ...
- Java Swing interview
http://www.careerride.com/Swing-AWT-Interview-Questions.aspx Swing interview questions and answers ...
随机推荐
- Java Socket 学习笔记
TCP协议的Socket编程 Socket:英文中的意思是插座.两个Java应用程序可以通过一个双向的网络通信连接实现数据交换,这个双向链路的一端称为一个Socket.Java中所有关于网络编程的类都 ...
- jsp中Java代码中怎么获取jsp页面元素
举例,页面元素<td><input value="${sl }" type="text" id="sl" name=& ...
- C# 自定义控件制作和使用实例(winform)
C# 自定义用户控件 此处为转载文章,用于记录自我学习过程,原文链接地址http://blog.csdn.net/xiongxuanwen/article/details/2605109 上篇:控件制 ...
- DataTbale取值
有一个DataTable数据 //创建DataTable对象 DataTable dt = new DataTable("Table_AX"); //为DataTable创建列 / ...
- 使用AutoMapper实现Dto和Model之间自由转换
应用场景:一个Web应用通过前端收集用户的输入成为Dto,然后将Dto转换成领域模型并持久化到数据库中.另一方面,当用户请求数据时,我们又需要做相反的工作:将从数据库中查询出来的领域模型以相反的方式转 ...
- Zend Server安装后首次运行就出现Internal Server Error的解决
无论是使用哪个版本的Zend Server来搭建PHP服务器,首次运行都会出现Internal Server Error的错误,对很多新手而言,每当看到这种错误时,那一刻内心绝对都是崩溃的.然而,这个 ...
- 网络编程(学习整理)---1--(Tcp)实现简单的控制台聊天室
1.简单的聊天室(控制台): 功能实现: 客户端和服务端的信息交流: 2.牵扯到的知识点: 这个我大概说一下,详细后面见代码! 1) 网络通讯的三要素 1. IP 2. 端口号. 3. 协议 2) ...
- MySql数据库4【命令行赋权操作】
MySQL 赋予用户权限命令的简单格式可概括为:grant 权限 on 数据库对象 to 用户 一.grant 普通数据用户,查询.插入.更新.删除 数据库中所有表数据的权利. grant selec ...
- 关于Redis的知识汇总[转]
1. Overview 1.1 资料 <The Little Redis Book> ,最好的入门小册子,可以先于一切文档之前看,免费. 作者Antirez的博客,Antirez维护的Re ...
- for循环,列表和格式化输出
一:for 循环 1. 简单的说如果让你输出1到100之间的整数,用while该怎么实现呢? i= : print(i) i+= 看着是不是只有4行,但是有没有更加简单的办法,不妨我 ...