1. Урок 1. 00:02:57
    Course Introduction
  2. Урок 2. 00:03:54
    Full Course Curriculum Overview
  3. Урок 3. 00:04:23
    Company Types Overview
  4. Урок 4. 00:05:40
    Job Type Overviews
  5. Урок 5. 00:05:45
    Resume Preparation
  6. Урок 6. 00:03:02
    Resume Creation Tools
  7. Урок 7. 00:06:15
    LinkedIn
  8. Урок 8. 00:07:20
    GitHub
  9. Урок 9. 00:03:03
    Personal Website and Portfolio
  10. Урок 10. 00:02:34
    Building a Network
  11. Урок 11. 00:02:05
    Networking Events
  12. Урок 12. 00:05:36
    Organization of Job Search
  13. Урок 13. 00:03:50
    Job Search Sites
  14. Урок 14. 00:03:16
    Company Matching Sites
  15. Урок 15. 00:00:33
    Overview of Interview Section
  16. Урок 16. 00:04:10
    5 Steps of an Interview
  17. Урок 17. 00:06:48
    Tough Interview Questions
  18. Урок 18. 00:02:06
    Questions for Students
  19. Урок 19. 00:02:09
    Special Case Interview Questions
  20. Урок 20. 00:02:41
    Salary Negotiations
  21. Урок 21. 00:01:38
    Salary Questions and Answers
  22. Урок 22. 00:01:48
    Preparing References
  23. Урок 23. 00:01:48
    Technical Overview
  24. Урок 24. 00:06:46
    Windows - Course Material Installations
  25. Урок 25. 00:05:11
    Mac OSX - Course Material Installations
  26. Урок 26. 00:10:19
    Jupyter Notebooks Overview
  27. Урок 27. 00:09:23
    Course Notebooks
  28. Урок 28. 00:06:06
    Interview Notebooks
  29. Урок 29. 00:01:08
    Algorithm Analysis and Big O Section Overview
  30. Урок 30. 00:06:35
    Introduction to Algorithm Analysis and Big O
  31. Урок 31. 00:07:51
    Big O Notation
  32. Урок 32. 00:19:26
    Big O Examples
  33. Урок 33. 00:05:10
    Big O for Python Data Structures
  34. Урок 34. 00:02:35
    Introduction to Array Based Sequences
  35. Урок 35. 00:18:25
    Low Level Arrays
  36. Урок 36. 00:10:12
    Dynamic Array
  37. Урок 37. 00:16:11
    Dynamic Array Excercise
  38. Урок 38. 00:04:27
    Amortization
  39. Урок 39. 00:01:58
    Interview Problems - Arrays
  40. Урок 40. 00:01:19
    Anagram Check - Interview Problem
  41. Урок 41. 00:09:15
    Anagram Check - Interview Problem - SOLUTION
  42. Урок 42. 00:01:04
    Array Pair Sum - Interview Problem
  43. Урок 43. 00:08:02
    Array Pair Sum - Interview Problem - SOLUTION
  44. Урок 44. 00:01:04
    Find the Missing Element - Interview Problem
  45. Урок 45. 00:11:59
    Find the Missing Element - Interview Problem - SOLUTION
  46. Урок 46. 00:01:05
    Largest Continuous Sum - Interview Problem
  47. Урок 47. 00:06:16
    Largest Continuous Sum - Interview Problem - SOLUTION
  48. Урок 48. 00:00:58
    Sentence Reversal - Interview Problem
  49. Урок 49. 00:07:37
    Sentence Reversal - Interview Problem - SOLUTION
  50. Урок 50. 00:01:03
    String Compression - Interview Problem
  51. Урок 51. 00:06:50
    String Compression - Interview Problem - SOLUTION
  52. Урок 52. 00:00:35
    Unique Characters in a String - Interview Problem
  53. Урок 53. 00:03:57
    Unique Characters in String - Interview Problem - SOLUTION
  54. Урок 54. 00:00:54
    Stacks, Queues, and Deques Overview
  55. Урок 55. 00:03:32
    Stacks Overview
  56. Урок 56. 00:07:09
    Implementation of Stack
  57. Урок 57. 00:02:51
    Queue Overview
  58. Урок 58. 00:04:45
    Implementation of Queue
  59. Урок 59. 00:01:53
    Deque Overview
  60. Урок 60. 00:01:53
    Implementation of Deque
  61. Урок 61. 00:06:09
    Implementation of Deque
  62. Урок 62. 00:01:08
    Stacks, Queues, and Deques Interview Problems
  63. Урок 63. 00:01:00
    Implement a Stack - Interview Problem
  64. Урок 64. 00:00:44
    Implement a Queue
  65. Урок 65. 00:01:00
    Implement a Deque - Interview Problem
  66. Урок 66. 00:02:01
    Balanced Parentheses Check - Interview Problem
  67. Урок 67. 00:10:40
    Balanced Parentheses Check - Interview Problem - SOLUTION
  68. Урок 68. 00:02:06
    Implement a Queue using 2 Stacks - Interview Problem -
  69. Урок 69. 00:05:05
    Implement a Queue using 2 Stacks - Interview Problem - SOLUTION
  70. Урок 70. 00:00:32
    Linked Lists Overview
  71. Урок 71. 00:08:01
    Singly Linked Lists
  72. Урок 72. 00:05:21
    Singly Linked List Implementation
  73. Урок 73. 00:04:33
    Doubly Linked Lists
  74. Урок 74. 00:03:23
    Doubly Linked List Implementation
  75. Урок 75. 00:02:02
    Singly Linked List Cycle Check - Interview Problem
  76. Урок 76. 00:06:03
    Singly Linked List Cycle Check - Interview Problem - SOLUTION
  77. Урок 77. 00:02:30
    Linked List Reversal - Interview Problem
  78. Урок 78. 00:06:21
    Linked List Reversal - Interview Problem - SOLUTION
  79. Урок 79. 00:01:52
    Linked List Nth to Last Node - Interview Problem
  80. Урок 80. 00:07:54
    Linked List Nth to Last Node - Interview Problem - SOLUTION
  81. Урок 81. 00:01:15
    Implement a Linked List - Interview Problem
  82. Урок 82. 00:01:06
    Implement a Linked List - Interview Problem - SOLUTION
  83. Урок 83. 00:08:28
    Introduction to Recursion
  84. Урок 84. 00:05:52
    Recursion Homework Example Problems
  85. Урок 85. 00:10:02
    Recursion Homework Example Problems - SOLUTIONS
  86. Урок 86. 00:02:49
    Memoization
  87. Урок 87. 00:02:21
    Recursion Interview Problem - 1
  88. Урок 88. 00:06:51
    Recursion Interview Problem - 1 - SOLUTION
  89. Урок 89. 00:02:05
    Recursion Interview Problem - 2
  90. Урок 90. 00:10:13
    Recursion Interview Problem - 2 - SOLUTION
  91. Урок 91. 00:04:55
    Recursion Interview Problem - 3
  92. Урок 92. 00:13:51
    Recursion Interview Problem - 3 - SOLUTION
  93. Урок 93. 00:04:11
    Recursion Interview Problem - 4
  94. Урок 94. 00:19:12
    Recursion Interview Problem - 4 - SOLUTION
  95. Урок 95. 00:10:28
    Introduction to Trees
  96. Урок 96. 00:01:27
    Tree Representation Implementation - Part 1
  97. Урок 97. 00:09:16
    Tree Representation Implementation - Part 2
  98. Урок 98. 00:11:13
    Nodes and References Implementation
  99. Урок 99. 00:07:09
    Tree Traversals
  100. Урок 100. 00:01:57
    Priority Queues with Binary Heaps
  101. Урок 101. 00:18:55
    Binary Heap Implementation
  102. Урок 102. 00:01:24
    Binary Search Trees
  103. Урок 103. 00:13:57
    Implementation of Binary Search Trees - Part 1
  104. Урок 104. 00:12:44
    Implementation of Binary Search Trees - Part 2
  105. Урок 105. 00:02:49
    Binary Search Tree Check - Interview Problem
  106. Урок 106. 00:05:32
    Binary Search Tree Check- Interview Problem - SOLUTION
  107. Урок 107. 00:01:33
    Tree Level Order Print - Interview Problem
  108. Урок 108. 00:10:20
    Tree Level Order Print - Interview Problem - SOLUTION
  109. Урок 109. 00:01:58
    Trim a Binary Search Tree - Interview Problem
  110. Урок 110. 00:07:39
    Trim a Binary Search Tree - Interview Problem - SOLUTION
  111. Урок 111. 00:01:28
    Search Overview
  112. Урок 112. 00:03:07
    Sequential Search
  113. Урок 113. 00:05:55
    Implementation of Sequential Search
  114. Урок 114. 00:03:26
    Binary Search
  115. Урок 115. 00:09:03
    Implementation of Binary Search
  116. Урок 116. 00:12:43
    Hashing
  117. Урок 117. 00:19:28
    Implementation of a Hash Table
  118. Урок 118. 00:01:26
    Sorting Overview
  119. Урок 119. 00:03:21
    Resources for Visualizing Sorting Algorithms
  120. Урок 120. 00:08:10
    Bubble Sort
  121. Урок 121. 00:07:07
    Implementation of Bubble Sort
  122. Урок 122. 00:06:55
    Selection Sort
  123. Урок 123. 00:05:27
    Implementation of Selection Sort
  124. Урок 124. 00:05:51
    Insertion Sort
  125. Урок 125. 00:06:31
    Implementation of Insertion Sort
  126. Урок 126. 00:04:39
    Shell Sort
  127. Урок 127. 00:08:29
    Implementation of Shell Sort
  128. Урок 128. 00:04:06
    Merge Sort
  129. Урок 129. 00:13:07
    Implementation of Merge Sort
  130. Урок 130. 00:06:31
    Quick Sort
  131. Урок 131. 00:12:17
    Implementation of Quick Sort
  132. Урок 132. 00:01:18
    Sorting Interview Problems
  133. Урок 133. 00:00:24
    Implement Binary Search Interview Problem
  134. Урок 134. 00:00:24
    Implement Bubble Sort Algorithm Interview Problem
  135. Урок 135. 00:00:23
    Implement Selection Sort Algorithm Interview Problem
  136. Урок 136. 00:00:22
    Implement Insertion Sort Algorithm Interview Problem
  137. Урок 137. 00:00:22
    Implement Shell Sort Algorithm Interview Problem
  138. Урок 138. 00:00:22
    Implement Merge Sort Algorithm Interview Problem
  139. Урок 139. 00:00:37
    Implement Quick Sort Algorithm Interview Problem
  140. Урок 140. 00:06:37
    Introduction to Graphs
  141. Урок 141. 00:04:25
    Adjacency Matrix and Adjacency List
  142. Урок 142. 00:18:25
    Implementation of a Graph (Adjacency List)
  143. Урок 143. 00:06:36
    Word Ladder Example Problem
  144. Урок 144. 00:12:42
    Breadth First Search
  145. Урок 145. 00:12:12
    Knight's Tour Example Problem
  146. Урок 146. 00:10:12
    General Depth First Search
  147. Урок 147. 00:10:58
    Implementation of Graph Overview
  148. Урок 148. 00:06:00
    Implementation of Depth First Search Overview
  149. Урок 149. 00:04:40
    Implementation of Breadth First Search Overview
  150. Урок 150. 00:00:44
    Implement a Graph - Interview Problem
  151. Урок 151. 00:00:30
    Implement Depth First Search - Interview Problem
  152. Урок 152. 00:00:33
    Implement Breadth First Search - Interview Problem
  153. Урок 153. 00:03:24
    How to Approach Riddles and Brain Teasers
  154. Урок 154. 00:01:45
    Bridge Crossing - Interview Problem
  155. Урок 155. 00:01:47
    Bridge Crossing - Interview Problem - SOLUTION
  156. Урок 156. 00:00:43
    Coins and a Scale - Interview Problem
  157. Урок 157. 00:01:42
    Coins and a Scale - Interview Problem - SOLUTION
  158. Урок 158. 00:01:12
    Egg Drop - Interview Problem
  159. Урок 159. 00:02:52
    Egg Drop - Interview Problem - SOLUTION
  160. Урок 160. 00:01:39
    Hallway Lockers - Interview Problem
  161. Урок 161. 00:04:56
    Hallway Lockers - Interview Problem - SOLUTION
  162. Урок 162. 00:00:36
    Jugs of Water - Interview Problem
  163. Урок 163. 00:01:35
    Jugs of Water - Interview Problem - SOLUTION
  164. Урок 164. 00:01:14
    Light Switches - Interview Problem
  165. Урок 165. 00:01:24
    Light Switches - Interview Problem - SOLUTION
  166. Урок 166. 00:01:03
    Ropes Burning - Interview Problem
  167. Урок 167. 00:01:12
    Ropes Burning - Interview Problem - SOLUTION
  168. Урок 168. 00:03:22
    Mock Interviews Overview
  169. Урок 169. 00:00:44
    Non-Technical Questions Guide
  170. Урок 170. 00:04:02
    Questions after an Interview Guide
  171. Урок 171. 00:01:13
    E-Commerce Company Interview - Overview
  172. Урок 172. 00:01:18
    Phone Screen
  173. Урок 173. 00:02:14
    On Site Question 1
  174. Урок 174. 00:02:06
    On Site Question 2
  175. Урок 175. 00:02:02
    On Site Question 3
  176. Урок 176. 00:03:51
    Phone Screen -SOLUTION
  177. Урок 177. 00:09:40
    On Site Question 1 -SOLUTION
  178. Урок 178. 00:08:24
    On Site Question 2 -SOLUTION
  179. Урок 179. 00:09:40
    On Site Question 3 -SOLUTION
  180. Урок 180. 00:00:53
    Large Search Engine Company Interview Overview
  181. Урок 181. 00:02:47
    Phone Screen
  182. Урок 182. 00:00:59
    On Site Question 1
  183. Урок 183. 00:00:49
    On Site Question 2
  184. Урок 184. 00:00:37
    On Site Question 3
  185. Урок 185. 00:01:30
    On Site Question 4
  186. Урок 186. 00:05:25
    Phone Screen - SOLUTION
  187. Урок 187. 00:01:56
    On Site Question 1 -SOLUTION
  188. Урок 188. 00:04:51
    On Site Question 2 -SOLUTION
  189. Урок 189. 00:01:28
    On Site Question 3 -SOLUTION
  190. Урок 190. 00:09:39
    On Site Question 4 -SOLUTION
  191. Урок 191. 00:00:41
    Ride Share Start-Up Interview Overview
  192. Урок 192. 00:00:52
    Phone Screen
  193. Урок 193. 00:00:51
    On Site Question 1
  194. Урок 194. 00:01:06
    On Site Question 2
  195. Урок 195. 00:00:41
    On Site Question 3
  196. Урок 196. 00:01:50
    Phone Screen - SOLUTION
  197. Урок 197. 00:10:07
    On Site Question 1 -SOLUTION
  198. Урок 198. 00:04:17
    On Site Question 2 -SOLUTION
  199. Урок 199. 00:09:36
    On Site Question 3 -SOLUTION
  200. Урок 200. 00:00:36
    Social Network Company Interview Overview
  201. Урок 201. 00:01:37
    Phone Screen
  202. Урок 202. 00:01:40
    On Site Question 1
  203. Урок 203. 00:01:15
    On Site Question 2
  204. Урок 204. 00:01:18
    On Site Question 3
  205. Урок 205. 00:03:42
    Phone Screen - SOLUTION
  206. Урок 206. 00:04:42
    On Site Question 1 -SOLUTION
  207. Урок 207. 00:04:56
    On Site Question 2 -SOLUTION
  208. Урок 208. 00:03:18
    On Site Question 3 -SOLUTION