plan.txt 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536
  1. ##########################################################################################
  2. ## How to read this
  3. ##########################################################################################
  4. Everything below is an outline, and you should tackle the items in order from top to bottom.
  5. I put an asterisk * at the beginning of a line when I'm done with it. When all sub-items are done,
  6. I put a * at the top level, meaning the entire block is done. Sorry you have to remove all my *
  7. to use this the same way. If you search/replace, there are a couple of places to look out for.
  8. ##########################################################################################
  9. ## Interview Prep:
  10. ##########################################################################################
  11. * - Videos:
  12. * - https://www.youtube.com/watch?v=oWbUtlUhwa8&feature=youtu.be
  13. * - https://www.youtube.com/watch?v=qc1owf2-220&feature=youtu.be
  14. * - https://www.youtube.com/watch?v=8npJLXkcmu8
  15. * - Articles:
  16. * - http://www.google.com/about/careers/lifeatgoogle/hiringprocess/
  17. * - http://steve-yegge.blogspot.com/2008/03/get-that-job-at-google.html
  18. - all the things he mentions that you need to know are listed below
  19. * - (very dated) http://dondodge.typepad.com/the_next_big_thing/2010/09/how-to-get-a-job-at-google-interview-questions-hiring-process.html
  20. * - http://sites.google.com/site/steveyegge2/five-essential-phone-screen-questions
  21. * - Additional (not suggested by Google but I added):
  22. * - https://medium.com/always-be-coding/abc-always-be-coding-d5f8051afce2#.4heg8zvm4
  23. * - https://medium.com/always-be-coding/four-steps-to-google-without-a-degree-8f381aa6bd5e#.asalo1vfx
  24. * - https://medium.com/@dpup/whiteboarding-4df873dbba2e#.hf6jn45g1
  25. * - http://www.kpcb.com/blog/lessons-learned-how-google-thinks-about-hiring-management-and-culture
  26. * - http://www.coderust.com/blog/2014/04/10/effective-whiteboarding-during-programming-interviews/
  27. * - Cracking The Coding Interview Set 1:
  28. * - https://www.youtube.com/watch?v=rEJzOhC5ZtQ
  29. * - https://www.youtube.com/watch?v=aClxtDcdpsQ
  30. * - How to Get a Job at the Big 4:
  31. * - https://www.youtube.com/watch?v=YJZCUhxNCv8
  32. ##########################################################################################
  33. ## Knowledge:
  34. ##########################################################################################
  35. You need to know C, C++, or Java to do the coding part of the interview.
  36. They will sometimes make an exception and let you use Python or some other language, but the language
  37. must be mainstream and allow you write your code low-level enough to solve the problems.
  38. You'll see some C, C++ learning included below.
  39. There are a few books involved, see the bottom
  40. * - how computers process a program:
  41. * - https://www.youtube.com/watch?v=42KTvGYQYnA
  42. * - https://www.youtube.com/watch?v=Mv2XQgpbTNE
  43. * - Computer Arch Intro:
  44. (first video only - interesting but not required) https://www.youtube.com/watch?v=zLP_X4wyHbY&list=PL5PHm2jkkXmi5CxxI7b3JCL1TWybTDtKq&index=1
  45. * - Parity & Hamming Code:
  46. Parity:
  47. https://www.youtube.com/watch?v=DdMcAUlxh1M
  48. Hamming Code:
  49. https://www.youtube.com/watch?v=1A_NcXxdoCc
  50. https://www.youtube.com/watch?v=JAMLuxdHH8o
  51. Error Checking:
  52. https://www.youtube.com/watch?v=wbH2VxzmoZk
  53. * - C
  54. * - K&R C book (ANSI C)
  55. - C++
  56. * - basics
  57. * - pointers
  58. * - functions
  59. * - references
  60. * - templates
  61. * - compilation
  62. * - scope & linkage
  63. * - namespaces
  64. * - OOP
  65. * - STL
  66. * - functors: http://www.cprogramming.com/tutorial/functors-function-objects-in-c++.html
  67. * - C++ at Google: https://www.youtube.com/watch?v=NOCElcMcFik
  68. * - Google C++ Style Guide: https://google.github.io/styleguide/cppguide.html
  69. * - Google uses clang-format (there is a command line "style" argument: -style=google)
  70. * - Efficiency with Algorithms, Performance with Data Structures: https://youtu.be/fHNmRkzxHWs
  71. - C++ Core Guidelines: http://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines
  72. - review of C++ concepts: https://www.youtube.com/watch?v=Rub-JsjMhWY
  73. * - compilers:
  74. * - https://class.coursera.org/compilers-004/lecture/1
  75. * - https://class.coursera.org/compilers-004/lecture/2
  76. * - C++: https://www.youtube.com/watch?v=twodd1KFfGk
  77. * - Understanding Compiler Optimization (C++): https://www.youtube.com/watch?v=FnGCDLhaxKU
  78. ----------------------------------------------------------------
  79. The Gauntlet:
  80. Each day I take one subject from the list below, watch videos about that subject, and write an implementation in:
  81. C - using structs and functions that take a struct * and something else as args.
  82. C++ - without using built-in types
  83. C++ - using built-in types, like STL's std::list for a linked list
  84. Python - without using built-in types
  85. and write tests to ensure I'm doing it right, keep it simple with just assert() statements
  86. You may do Java or something else, this is just my thing.
  87. Each subject does not require a whole day to be able to understand it fully.
  88. Why code in all of these?
  89. Practice, practice, practice, until I'm sick of it, and can do it with no problem (some have many edge cases and bookkeeping details to remember)
  90. Work within the raw constraints (allocating/freeing memory without help of garbage collection (except Python))
  91. Make use of built-in types so I have experience using the built-in tools for real-world use (not going to write my own linked list implementation in production)
  92. You don't need to memorize the guts of every algorithm.
  93. Write code on a whiteboard, not a computer. Test with some sample inputs.
  94. Then test it out on a computer to make sure it's not buggy from syntax.
  95. ----------------------------------------------------------------
  96. arrays
  97. No need to spend a whole day on this.
  98. * - Description:
  99. - https://www.coursera.org/learn/data-structures/lecture/OsBSF/arrays
  100. - https://www.coursera.org/learn/data-structures/lecture/EwbnV/dynamic-arrays
  101. - Implement:
  102. * - Practice coding using arrays and pointers, and pointer math to jump to an index instead of using indexing.
  103. * - new raw data array with allocated memory (can allocate int array under the hood, just not use its features)
  104. * - size() - number of items
  105. * - capacity() - number of items it can hold
  106. * - is_empty()
  107. - at(index) - returns item at given index
  108. - cannot append or move if full - will not tackle allocating and copying to new memory
  109. - append(item)
  110. - insert(index, item)
  111. - prepend(item) - can use insert above at index 0
  112. - delete(index)
  113. - remove(item)
  114. - find(item)
  115. - Time
  116. - O(1) to add/remove at end (amortized for allocations for more space), index, or update
  117. - O(n) to insert/remove elsewhere
  118. - Space
  119. - contiguous in memory, so proximity helps performance
  120. - space needed = size of object * number of items to store
  121. linked lists
  122. - singly-linked
  123. * - Description: https://www.coursera.org/learn/data-structures/lecture/kHhgK/singly-linked-lists
  124. * - Lynda.com:
  125. - https://www.lynda.com/Developer-Programming-Foundations-tutorials/Introduction-lists/149042/177115-4.html
  126. - https://www.lynda.com/Developer-Programming-Foundations-tutorials/Understanding-basic-list-implementations/149042/177116-4.html
  127. - https://www.lynda.com/Developer-Programming-Foundations-tutorials/Using-singly-doubly-linked-lists/149042/177117-4.html
  128. - https://www.lynda.com/Developer-Programming-Foundations-tutorials/List-support-across-languages/149042/177118-4.html
  129. * - C Code: https://www.youtube.com/watch?v=QN6FPiD0Gzo
  130. - not the whole video, just portions about Node struct and memory allocation.
  131. * - why you should avoid linked lists:
  132. - https://www.youtube.com/watch?v=YQs6IC-vgmo
  133. - implement (with tail pointer), item is the data item in a node:
  134. - push_front
  135. - get_front
  136. - pop_front
  137. - push_back
  138. - get_back
  139. - pop_back
  140. - insert_before(node, item)
  141. - insert_after(node, item)
  142. - size()
  143. - is_empty()
  144. - find(item) - assume each item is unique
  145. - remove(item) - assume each item is unique
  146. - doubly-linked list
  147. - Description: https://www.coursera.org/learn/data-structures/lecture/jpGKD/doubly-linked-lists
  148. - reverse a singly-linked list
  149. stacks
  150. - see: https://class.coursera.org/algs4partI-010/lecture
  151. - https://www.coursera.org/learn/data-structures/lecture/UdKzQ/stacks
  152. queues
  153. - see: https://class.coursera.org/algs4partI-010/lecture
  154. - https://www.coursera.org/learn/data-structures/lecture/EShpq/queues
  155. Vectors
  156. - Vector calculus ?
  157. heaps
  158. - https://www.coursera.org/learn/data-structures/lecture/GRV2q/binary-trees
  159. - min heap
  160. - max heap
  161. Priority Queue
  162. - https://www.coursera.org/learn/data-structures/lecture/2OpTs/introduction
  163. - see: https://class.coursera.org/algs4partI-010/lecture
  164. - https://class.coursera.org/algs4partI-010/lecture/39
  165. - https://en.wikipedia.org/wiki/Priority_queue
  166. Disjoint Sets:
  167. - https://www.coursera.org/learn/data-structures/lecture/JssSY/overview
  168. - https://www.coursera.org/learn/data-structures/lecture/Mxu0w/trees
  169. hashtables
  170. - https://www.youtube.com/watch?v=C4Kc8xzcA68
  171. - https://class.coursera.org/algs4partI-010/lecture/52
  172. - https://www.coursera.org/learn/data-structures/home/week/3
  173. - see: https://class.coursera.org/algs4partI-010/lecture
  174. - https://www.coursera.org/learn/data-structures-optimizing-performance/lecture/m7UuP/core-hash-tables
  175. - test: implement with only arrays
  176. tries
  177. - https://www.coursera.org/learn/data-structures-optimizing-performance/lecture/08Xyf/core-introduction-to-tries
  178. Circular buffer/FIFO:
  179. - https://en.wikipedia.org/wiki/Circular_buffer
  180. Bit operations
  181. - count on bits
  182. - https://youtu.be/Hzuzo9NJrlc
  183. - max run of off bits
  184. - bit shifting
  185. binary search
  186. Sorting
  187. - no bubble sort - it's terrible
  188. - at least one n*log(n) sorting algorithm, preferably two (say, quicksort and merge sort)
  189. - Which algorithms can be used on lists? Which on arrays? Which on both? Is Quicksort stable?
  190. - algos:
  191. - mergesort
  192. - quicksort
  193. Caches
  194. - LRU cache
  195. Trees
  196. - https://www.coursera.org/learn/data-structures-optimizing-performance/lecture/ovovP/core-trees
  197. - see: https://class.coursera.org/algs4partI-010/lecture
  198. - basic tree construction
  199. - traversal
  200. - manipulation algorithms
  201. - binary search trees BSTs
  202. - https://www.coursera.org/learn/data-structures/lecture/E7cXP/introduction
  203. - applications:
  204. - https://class.coursera.org/algs4partI-010/lecture/57
  205. - n-ary trees
  206. - trie-trees
  207. - at least one type of balanced binary tree (and know how it's implemented):
  208. - red/black tree
  209. - https://class.coursera.org/algs4partI-010/lecture/50
  210. - splay trees
  211. - https://www.coursera.org/learn/data-structures/lecture/O9nZ6/splay-trees
  212. - AVL trees
  213. - https://www.coursera.org/learn/data-structures/lecture/Qq5E0/avl-trees
  214. - https://www.coursera.org/learn/data-structures/lecture/PKEBC/avl-tree-implementation
  215. - https://www.coursera.org/learn/data-structures/lecture/22BgE/split-and-merge
  216. - 2-3 Search Trees
  217. - https://class.coursera.org/algs4partI-010/lecture/49
  218. - B-Trees:
  219. - https://class.coursera.org/algs4partI-010/lecture/51
  220. - BFS (breadth-first search)
  221. - DFS (depth-first search)
  222. - know the difference between
  223. - inorder
  224. - postorder
  225. - preorder
  226. Graphs:
  227. There are three basic ways to represent a graph in memory:
  228. - objects and pointers
  229. - matrix
  230. - adjacency list
  231. - familiarize yourself with each representation and its pros & cons
  232. - BFS and DFS - know their computational complexity, their tradeoffs, and how to implement them in real code
  233. - If you get a chance, try to study up on fancier algorithms:
  234. - Dijkstra
  235. - A*
  236. - when asked a question, look for a graph-based solution first, then move on if none.
  237. Other data structures:
  238. - You should study up on as many other data structures and algorithms as possible
  239. - You should especially know about the most famous classes of NP-complete problems, such as traveling salesman and the knapsack problem, and be able to recognize them when an interviewer asks you them in disguise.
  240. - Know what NP-complete means.
  241. Recursion
  242. - when it is appropriate to use it
  243. Algorithmic complexity
  244. - http://discrete.gr/complexity/
  245. - http://bigocheatsheet.com/
  246. open-ended problems
  247. - manipulate strings
  248. - manipulate patterns
  249. design patterns:
  250. - strategy
  251. - singleton
  252. - adapter
  253. - prototype
  254. - decorator
  255. - visitor
  256. - factory
  257. Combinatorics (n choose k)
  258. Probability
  259. Dynamic Programming
  260. Processes, Threads, Concurrency issues
  261. - difference: https://www.quora.com/What-is-the-difference-between-a-process-and-a-thread
  262. - threads: https://www.youtube.com/playlist?list=PL5jc9xFGsL8E12so1wlMS0r0hTQoJL74M
  263. - stopped here: https://www.youtube.com/watch?v=_N0B5ua7oN8&list=PL5jc9xFGsL8E12so1wlMS0r0hTQoJL74M&index=4
  264. - locks
  265. - mutexes
  266. - semaphores
  267. - monitors
  268. - how they work
  269. - deadlock
  270. - livelock
  271. Process resource needs
  272. Thread resource needs
  273. Modern concurrency constructs with multicore processors
  274. Context switching
  275. - How context switching is initiated by the operating system and underlying hardware
  276. Scheduling
  277. Weighted random sampling
  278. Implement system routines
  279. Distill large data sets to single values
  280. Transform one data set to another
  281. Handling obscenely large amounts of data
  282. System design:
  283. - features sets
  284. - interfaces
  285. - class hierarchies
  286. - designing a system under certain constraints
  287. - simplicity and robustness
  288. - tradeoffs
  289. Performance analysis and optimization
  290. Familiarize yourself with unix-based souped-up code editor: emacs & vi(m)
  291. vi(m):
  292. - https://www.youtube.com/watch?v=5givLEMcINQ&index=1&list=PL13bz4SHGmRxlZVmWQ9DvXo1fEg4UdGkr
  293. - set of 4:
  294. - https://www.youtube.com/watch?v=SI8TeVMX8pk
  295. - https://www.youtube.com/watch?v=F3OO7ZIOaJE
  296. - https://www.youtube.com/watch?v=ZYEccA_nMaI
  297. - https://www.youtube.com/watch?v=1lYD5gwgZIA
  298. emacs:
  299. - https://www.youtube.com/watch?v=hbmV1bnQ-i0
  300. - set of 3:
  301. - https://www.youtube.com/watch?v=ujODL7MD04Q
  302. - https://www.youtube.com/watch?v=XWpsRupJ4II
  303. - https://www.youtube.com/watch?v=paSgzPso-yc
  304. - https://www.youtube.com/watch?v=JWD1Fpdd4Pc
  305. Testing
  306. -------------------------------------------------------------------
  307. Once you're closer to the interview:
  308. - Cracking The Coding Interview Set 2:
  309. - https://www.youtube.com/watch?v=4NIb9l3imAo
  310. - https://www.youtube.com/watch?v=Eg5-tdAwclo
  311. - https://www.youtube.com/watch?v=1fqxMuPmGak
  312. -------------------------------------------------------------------
  313. Extras that can't hurt:
  314. Information theory:
  315. - Markov processes:
  316. - https://www.coursera.org/learn/data-structures-optimizing-performance/lecture/waxgx/core-markov-text-generation
  317. - https://www.coursera.org/learn/data-structures-optimizing-performance/lecture/gZhiC/core-implementing-markov-text-generation
  318. - https://www.khanacademy.org/computing/computer-science/informationtheory/moderninfotheory/v/symbol-rate-information-theory
  319. - includes Markov chain
  320. Bloom Filter
  321. - https://www.youtube.com/watch?v=-SuTGoFYjZs
  322. - http://blog.michaelschmatz.com/2016/04/11/how-to-write-a-bloom-filter-cpp/
  323. Fast Fourier Transform
  324. - http://jakevdp.github.io/blog/2013/08/28/understanding-the-fft/
  325. C (for basis of C)
  326. C++ (for interview answers)
  327. Machine Learning:
  328. - great course: https://www.coursera.org/learn/machine-learning
  329. - http://www.analyticsvidhya.com/blog/2016/04/neural-networks-python-theano/
  330. - http://www.dataschool.io/
  331. ------------------------
  332. Be thinking of for when the interview comes:
  333. Think of about 20 interview questions you'll get, along the lines of the items below:
  334. have 2-3 answers for each
  335. Have a story, not just data, about something you accomplished
  336. Why do you want this job?
  337. What's a tough problem you've solved?
  338. Biggest challenges faced?
  339. Best/worst designs seen?
  340. Ideas for improving an existing Google product.
  341. How do you work best, as an individual and as part of a team?
  342. Which of your skills or experiences would be assets in the role and why?
  343. What did you most enjoy at [job x / project y]?
  344. What was the biggest challenge you faced at [job x / project y]?
  345. What was the hardest bug you faced at [job x / project y]?
  346. What did you learn at [job x / project y]?
  347. What would you have done better at [job x / project y]?
  348. ---------------------------
  349. Have questions for the interviewer.
  350. Some of mine (I already may know answer to but want their opinion or team perspective):
  351. - How large is your team?
  352. - What is your dev cycle look like? Do you do sprints/agile?
  353. - How are decisions made in your team?
  354. - What are you working on?
  355. - What do you like about it?
  356. - What is the work life like?
  357. ##########################################################################################
  358. ## Videos:
  359. ##########################################################################################
  360. 6.042: Math for CS (25 videos):
  361. - https://www.youtube.com/watch?v=L3LMbpZIKhQ&list=PLB7540DEDD482705B
  362. 6.006: Intro to Algorithms (47 videos):
  363. - https://www.youtube.com/watch?v=HtSuA80QTyo&list=PLUl4u3cNGP61Oq3tWYp6V_F-5jb5L2iHb&nohtml5=False
  364. 6.033: Computer System Engineering (22 videos):
  365. - https://www.youtube.com/watch?v=zm2VP0kHl1M&list=PL6535748F59DCA484
  366. 6.046: Design and Analysis of Algorithms (34 videos):
  367. - https://www.youtube.com/watch?v=2P-yW7LQr08&list=PLUl4u3cNGP6317WaSNfmCvGym2ucw3oGp
  368. 6.851: Advanced Data Structures (22 videos):
  369. - https://www.youtube.com/watch?v=T0yzrZL1py0&list=PLUl4u3cNGP61hsJNdULdudlRL493b-XZf
  370. Stanford: Programming Paradigms (17 videos)
  371. - https://www.youtube.com/watch?v=jTSvthW34GU&list=PLC0B8B318B7394B6F&nohtml5=False
  372. ##########################################################################################
  373. ## Articles:
  374. ##########################################################################################
  375. - https://www.topcoder.com/community/data-science/data-science-tutorials/the-importance-of-algorithms/
  376. - http://highscalability.com/blog/2016/4/4/how-to-remove-duplicates-in-a-large-dataset-reducing-memory.html
  377. - http://highscalability.com/blog/2016/3/23/what-does-etsys-architecture-look-like-today.html
  378. - http://highscalability.com/blog/2016/3/21/to-compress-or-not-to-compress-that-was-ubers-question.html
  379. - http://highscalability.com/blog/2016/3/3/asyncio-tarantool-queue-get-in-the-queue.html
  380. - http://highscalability.com/blog/2016/2/25/when-should-approximate-query-processing-be-used.html
  381. - http://highscalability.com/blog/2016/2/23/googles-transition-from-single-datacenter-to-failover-to-a-n.html
  382. - http://highscalability.com/blog/2016/2/15/egnyte-architecture-lessons-learned-in-building-and-scaling.html
  383. - http://highscalability.com/blog/2016/2/1/a-patreon-architecture-short.html
  384. - http://highscalability.com/blog/2016/1/27/tinder-how-does-one-of-the-largest-recommendation-engines-de.html
  385. - http://highscalability.com/blog/2016/1/25/design-of-a-modern-cache.html
  386. - http://highscalability.com/blog/2016/1/13/live-video-streaming-at-facebook-scale.html
  387. - http://highscalability.com/blog/2016/1/11/a-beginners-guide-to-scaling-to-11-million-users-on-amazons.html
  388. - http://highscalability.com/blog/2015/12/16/how-does-the-use-of-docker-effect-latency.html
  389. - http://highscalability.com/blog/2015/12/14/does-amp-counter-an-existential-threat-to-google.html
  390. - http://highscalability.com/blog/2015/11/9/a-360-degree-view-of-the-entire-netflix-stack.html
  391. ##########################################################################################
  392. ## Papers:
  393. ##########################################################################################
  394. Computing Weak Consistency in Polynomial Time
  395. - http://delivery.acm.org/10.1145/2770000/2767407/p395-golab.pdf?ip=104.200.154.80&id=2767407&acc=OA&key=4D4702B0C3E38B35%2E4D4702B0C3E38B35%2E4D4702B0C3E38B35%2E5945DC2EABF3343C&CFID=769944592&CFTOKEN=71654301&__acm__=1460506755_42d28e3f230cc8e733e2e9ed1ebe3605
  396. How Developers Search for Code: A Case Study
  397. - http://static.googleusercontent.com/media/research.google.com/en//pubs/archive/43835.pdf
  398. Borg, Omega, and Kubernetes
  399. - http://static.googleusercontent.com/media/research.google.com/en//pubs/archive/44843.pdf
  400. Continuous Pipelines at Google
  401. - http://static.googleusercontent.com/media/research.google.com/en//pubs/archive/43790.pdf
  402. AddressSanitizer: A Fast Address Sanity Checker
  403. - http://static.googleusercontent.com/media/research.google.com/en//pubs/archive/37752.pdf
  404. ##########################################################################################
  405. ## Books:
  406. ##########################################################################################
  407. Mentioned in Coaching:
  408. The Algorithm Design Manual
  409. http://www.amazon.com/Algorithm-Design-Manual-Steven-Skiena/dp/1849967202
  410. Algorithms and Programming: Problems and Solutions:
  411. http://www.amazon.com/Algorithms-Programming-Solutions-Alexander-Shen/dp/0817638474
  412. Read first:
  413. Programming Interviews Exposed: Secrets to Landing Your Next Job, 2nd Edition:
  414. http://www.wiley.com/WileyCDA/WileyTitle/productCd-047012167X.html
  415. Read second:
  416. Cracking the Coding Interview, Fourth Edition:
  417. - http://www.amazon.com/Cracking-Coding-Interview-6th-Programming/dp/0984782850/
  418. Additional (not suggested by Google but I added):
  419. * - C Programming Language, Vol 2
  420. * - C++ Primer Plus, 6th Edition
  421. Programming Pearls:
  422. - http://www.amazon.com/Programming-Pearls-2nd-Jon-Bentley/dp/0201657880
  423. If you see people reference "The Google Resume", it was replaced by "Cracking the Coding Interview".
  424. Clean Code
  425. Code Complete
  426. Introduction to Algorithms
  427. ##########################################################################################
  428. ## Coding exercises/challenges:
  429. ##########################################################################################
  430. - https://courses.csail.mit.edu/iap/interview/materials.php
  431. Recommended: LeetCode: https://leetcode.com/
  432. TopCoder: https://www.topcoder.com/
  433. More:
  434. HackerRank: https://www.hackerrank.com/
  435. Codility: https://codility.com/programmers/
  436. Project Euler: https://projecteuler.net/index.php?section=problems
  437. InterviewCake: https://www.interviewcake.com/
  438. InterviewBit: https://www.interviewbit.com/invite/icjf
  439. ##########################################################################################
  440. ## Code References:
  441. ##########################################################################################
  442. For review questions in C book:
  443. https://github.com/lekkas/c-algorithms
  444. ##########################################################################################
  445. ## Once you've got the job (this is mainly for me):
  446. ##########################################################################################
  447. C++ Talks at CPPCon:
  448. - https://www.youtube.com/watch?v=hEx5DNLWGgA&index=2&list=PLHTh1InhhwT75gykhs7pqcR_uSiG601oh
  449. Compilers:
  450. - https://class.coursera.org/compilers-004/lecture
  451. Computer and processor architecture:
  452. - https://class.coursera.org/comparch-003/lecture
  453. Long series of C++ videos:
  454. - https://www.youtube.com/playlist?list=PLfVsf4Bjg79Cu5MYkyJ-u4SyQmMhFeC1C
  455. ##########################################################################################
  456. ## Done. ##
  457. ##########################################################################################