1. Урок 1. 00:05:05
    How To Succeed In This Course
  2. Урок 2. 00:04:02
    Join Our Online Classroom!
  3. Урок 3. 00:04:24
    ZTM Resources
  4. Урок 4. 00:05:40
    Section Overview
  5. Урок 5. 00:05:10
    Resume
  6. Урок 6. 00:17:06
    Exercise: Resume Walkthrough
  7. Урок 7. 00:02:38
    Resume Review
  8. Урок 8. 00:15:04
    What If I Don't Have Enough Experience?
  9. Урок 9. 00:08:23
    LinkedIn
  10. Урок 10. 00:03:24
    Portfolio
  11. Урок 11. 00:08:25
    Email
  12. Урок 12. 00:06:03
    Where To Find Jobs?
  13. Урок 13. 00:03:35
    When Should You Start Applying?
  14. Урок 14. 00:02:18
    Section Summary
  15. Урок 15. 00:02:54
    Setting Up Your Environment
  16. Урок 16. 00:02:25
    Section Overview
  17. Урок 17. 00:06:58
    What Is Good Code?
  18. Урок 18. 00:11:09
    Big O and Scalability
  19. Урок 19. 00:05:40
    O(n)
  20. Урок 20. 00:06:11
    O(1)
  21. Урок 21. 00:05:55
    Solution: Big O Calculation
  22. Урок 22. 00:02:30
    Solution: Big O Calculation 2
  23. Урок 23. 00:01:51
    Simplifying Big O
  24. Урок 24. 00:04:29
    Big O Rule 1
  25. Урок 25. 00:06:38
    Big O Rule 2
  26. Урок 26. 00:03:14
    Big O Rule 3
  27. Урок 27. 00:07:14
    O(n^2)
  28. Урок 28. 00:06:48
    Big O Rule 4
  29. Урок 29. 00:03:20
    Big O Cheat Sheet
  30. Урок 30. 00:05:33
    What Does This All Mean?
  31. Урок 31. 00:01:19
    O(n!)
  32. Урок 32. 00:03:33
    3 Pillars Of Programming
  33. Урок 33. 00:02:23
    Space Complexity
  34. Урок 34. 00:06:25
    Exercise: Space Complexity
  35. Урок 35. 00:07:14
    Exercise: Twitter
  36. Урок 36. 00:03:28
    Optional: Javascript Loops
  37. Урок 37. 00:04:44
    Section Summary
  38. Урок 38. 00:05:05
    Section Overview
  39. Урок 39. 00:03:06
    What Are Companies Looking For?
  40. Урок 40. 00:03:28
    What We Need For Coding Interviews
  41. Урок 41. 00:02:32
    Exercise: Google Interview
  42. Урок 42. 00:20:34
    Exercise: Interview Question
  43. Урок 43. 00:23:00
    Exercise: Interview Question 2
  44. Урок 44. 00:01:31
    Review Google Interview
  45. Урок 45. 00:03:37
    Section Summary
  46. Урок 46. 00:01:59
    Section Overview
  47. Урок 47. 00:05:54
    What Is A Data Structure?
  48. Урок 48. 00:12:34
    How Computers Store Data
  49. Урок 49. 00:03:29
    Data Structures In Different Languages
  50. Урок 50. 00:03:06
    Operations On Data Structures
  51. Урок 51. 00:13:52
    Arrays Introduction
  52. Урок 52. 00:06:41
    Static vs Dynamic Arrays
  53. Урок 53. 00:24:53
    Optional: Classes In Javascript
  54. Урок 54. 00:17:20
    Implementing An Array
  55. Урок 55. 00:01:05
    Strings and Arrays
  56. Урок 56. 00:01:36
    Exercise: Reverse A String
  57. Урок 57. 00:10:32
    Solution: Reverse A String
  58. Урок 58. 00:00:45
    Exercise: Merge Sorted Arrays
  59. Урок 59. 00:14:13
    Solution: Merge Sorted Arrays
  60. Урок 60. 00:03:29
    Arrays Review
  61. Урок 61. 00:04:11
    Hash Tables Introduction
  62. Урок 62. 00:05:57
    Hash Function
  63. Урок 63. 00:09:44
    Hash Collisions
  64. Урок 64. 00:03:31
    Hash Tables In Different Languages
  65. Урок 65. 00:03:52
    Exercise: Implement A Hash Table
  66. Урок 66. 00:17:26
    Solution: Implement A Hash Table
  67. Урок 67. 00:06:12
    keys()
  68. Урок 68. 00:02:02
    Hash Tables VS Arrays
  69. Урок 69. 00:01:19
    Exercise: First Recurring Character
  70. Урок 70. 00:16:12
    Solution: First Recurring Character
  71. Урок 71. 00:06:10
    Hash Tables Review
  72. Урок 72. 00:02:27
    Linked Lists Introduction
  73. Урок 73. 00:04:37
    What Is A Linked List?
  74. Урок 74. 00:02:57
    Exercise: Imposter Syndrome
  75. Урок 75. 00:02:06
    Exercise: Why Linked Lists?
  76. Урок 76. 00:05:36
    Solution: Why Linked Lists?
  77. Урок 77. 00:05:46
    What Is A Pointer?
  78. Урок 78. 00:08:39
    Our First Linked List
  79. Урок 79. 00:05:26
    Solution: append()
  80. Урок 80. 00:02:29
    Solution: prepend()
  81. Урок 81. 00:02:42
    Node Class
  82. Урок 82. 00:05:13
    insert()
  83. Урок 83. 00:13:09
    Solution: insert()
  84. Урок 84. 00:05:22
    Solution: remove()
  85. Урок 85. 00:03:19
    Doubly Linked Lists
  86. Урок 86. 00:08:51
    Solution: Doubly Linked Lists
  87. Урок 87. 00:02:41
    Singly VS Doubly Linked Lists
  88. Урок 88. 00:01:31
    Exercise: reverse()
  89. Урок 89. 00:07:39
    Solution: reverse()
  90. Урок 90. 00:05:09
    Linked Lists Review
  91. Урок 91. 00:02:59
    Stacks + Queues Introduction
  92. Урок 92. 00:03:29
    Stacks
  93. Урок 93. 00:03:31
    Queues
  94. Урок 94. 00:03:07
    Exercise: Stacks VS Queues
  95. Урок 95. 00:03:40
    Solution: Stacks VS Queues
  96. Урок 96. 00:24:13
    Optional: How Javascript Works
  97. Урок 97. 00:02:24
    Exercise: Stack Implementation (Linked Lists)
  98. Урок 98. 00:08:59
    Solution: Stack Implementation (Linked Lists)
  99. Урок 99. 00:00:54
    Exercise: Stack Implementation (Array)
  100. Урок 100. 00:03:57
    Solution: Stack Implementation (Array)
  101. Урок 101. 00:01:49
    Exercise: Queue Implementation
  102. Урок 102. 00:07:51
    Solution: Queue Implementation
  103. Урок 103. 00:02:06
    Queues Using Stacks
  104. Урок 104. 00:02:20
    Stacks + Queues Review
  105. Урок 105. 00:06:24
    Trees Introduction
  106. Урок 106. 00:05:46
    Binary Trees
  107. Урок 107. 00:07:01
    O(log n)
  108. Урок 108. 00:06:13
    Binary Search Trees
  109. Урок 109. 00:03:43
    Balanced VS Unbalanced BST
  110. Урок 110. 00:02:27
    BST Pros and Cons
  111. Урок 111. 00:03:58
    Exercise: Binary Search Tree
  112. Урок 112. 00:10:11
    Solution: insert()
  113. Урок 113. 00:04:55
    Solution: lookup()
  114. Урок 114. 00:02:29
    Extra Exercise: remove()
  115. Урок 115. 00:07:42
    Solution: remove()
  116. Урок 116. 00:02:57
    AVL Trees + Red Black Trees
  117. Урок 117. 00:05:37
    Binary Heaps
  118. Урок 118. 00:01:09
    Quick Note on Heaps
  119. Урок 119. 00:05:28
    Priority Queue
  120. Урок 120. 00:03:17
    Trie
  121. Урок 121. 00:00:52
    Tree Review
  122. Урок 122. 00:02:29
    Graphs Introduction
  123. Урок 123. 00:03:33
    Types Of Graphs
  124. Урок 124. 00:02:46
    Exercise: Guess The Graph
  125. Урок 125. 00:05:59
    Graph Data
  126. Урок 126. 00:04:07
    Exercise: Graph Implementation
  127. Урок 127. 00:04:52
    Solution: Graph Implementation
  128. Урок 128. 00:02:05
    Graphs Review
  129. Урок 129. 00:01:53
    Data Structures Review
  130. Урок 130. 00:01:54
    What Else Is Coming Up?
  131. Урок 131. 00:03:52
    Introduction to Algorithms
  132. Урок 132. 00:05:37
    Recursion Introduction
  133. Урок 133. 00:06:18
    Stack Overflow
  134. Урок 134. 00:10:28
    Anatomy Of Recursion
  135. Урок 135. 00:03:26
    Exercise: Factorial
  136. Урок 136. 00:06:21
    Solution: Factorial
  137. Урок 137. 00:02:00
    Exercise: Fibonacci
  138. Урок 138. 00:11:22
    Solution: Fibonacci
  139. Урок 139. 00:04:17
    Recursive VS Iterative
  140. Урок 140. 00:04:01
    When To Use Recursion
  141. Урок 141. 00:02:48
    Recursion Review
  142. Урок 142. 00:07:02
    Sorting Introduction
  143. Урок 143. 00:06:52
    The Issue With sort()
  144. Урок 144. 00:03:39
    Sorting Algorithms
  145. Урок 145. 00:03:47
    Bubble Sort
  146. Урок 146. 00:05:07
    Solution: Bubble Sort
  147. Урок 147. 00:02:40
    Selection Sort
  148. Урок 148. 00:02:24
    Solution: Selection Sort
  149. Урок 149. 00:01:37
    Dancing Algorithms
  150. Урок 150. 00:02:39
    Insertion Sort
  151. Урок 151. 00:02:07
    Solution: Insertion Sort
  152. Урок 152. 00:09:00
    Merge Sort and O(n log n)
  153. Урок 153. 00:04:45
    Solution: Merge Sort
  154. Урок 154. 00:07:41
    Quick Sort
  155. Урок 155. 00:04:41
    Which Sort Is Best?
  156. Урок 156. 00:04:18
    Radix Sort + Counting Sort
  157. Урок 157. 00:01:28
    Exercise: Sorting Interview
  158. Урок 158. 00:07:08
    Solution: Sorting Interview
  159. Урок 159. 00:01:28
    Sorting In Your Language
  160. Урок 160. 00:02:54
    Sorting Review
  161. Урок 161. 00:01:35
    Searching + Traversal Introduction
  162. Урок 162. 00:03:38
    Linear Search
  163. Урок 163. 00:06:06
    Binary Search
  164. Урок 164. 00:03:57
    Graph + Tree Traversals
  165. Урок 165. 00:02:46
    BFS Introduction
  166. Урок 166. 00:03:24
    DFS Introduction
  167. Урок 167. 00:03:21
    BFS vs DFS
  168. Урок 168. 00:00:45
    Exercise: BFS vs DFS
  169. Урок 169. 00:03:17
    Solution: BFS vs DFS
  170. Урок 170. 00:09:16
    breadthFirstSearch()
  171. Урок 171. 00:05:34
    breadthFirstSearchRecursive()
  172. Урок 172. 00:05:22
    PreOrder, InOrder, PostOrder
  173. Урок 173. 00:12:04
    depthFirstSearch()
  174. Урок 174. 00:03:54
    Graph Traversals
  175. Урок 175. 00:02:08
    BFS in Graphs
  176. Урок 176. 00:02:51
    DFS in Graphs
  177. Урок 177. 00:05:12
    Dijkstra + Bellman-Ford Algorithms
  178. Урок 178. 00:04:22
    Searching + Traversal Review
  179. Урок 179. 00:01:52
    Dynamic Programming Introduction
  180. Урок 180. 00:07:48
    Memoization 1
  181. Урок 181. 00:03:57
    Memoization 2
  182. Урок 182. 00:05:34
    Fibonacci and Dynamic Programming
  183. Урок 183. 00:05:48
    Dynamic Programming
  184. Урок 184. 00:09:13
    Implementing Dynamic Programming
  185. Урок 185. 00:04:46
    Dynamic Programming Review
  186. Урок 186. 00:02:39
    Section Overview
  187. Урок 187. 00:09:05
    During The Interview
  188. Урок 188. 00:05:31
    Tell Me About Yourself
  189. Урок 189. 00:05:07
    Why Us?
  190. Урок 190. 00:05:19
    Tell Me About A Problem You Have Solved
  191. Урок 191. 00:02:20
    What Is Your Biggest Weakness
  192. Урок 192. 00:03:25
    Any Questions For Us?
  193. Урок 193. 00:08:12
    Secret Weapon
  194. Урок 194. 00:05:25
    After The Interview
  195. Урок 195. 00:03:57
    Section Summary
  196. Урок 196. 00:02:11
    Section Overview
  197. Урок 197. 00:04:08
    Handling Rejection
  198. Урок 198. 00:09:41
    Negotiation 101
  199. Урок 199. 00:09:04
    Handling An Offer
  200. Урок 200. 00:07:30
    Handling Multiple Offers
  201. Урок 201. 00:07:42
    Getting A Raise
  202. Урок 202. 00:02:10
    Section Summary
  203. Урок 203. 00:00:53
    Thank You.
  204. Урок 204. 00:01:26
    Coding Problems
  205. Урок 205. 00:14:45
    Contributing To Open Source
  206. Урок 206. 00:09:43
    Contributing To Open Source 2
  207. Урок 207. 00:02:00
    From JTS: Learn to Learn
  208. Урок 208. 00:02:44
    From JTS: Start With Why
  209. Урок 209. 00:02:28
    How To Use Leetcode
  210. Урок 210. 00:38:31
    AMA - 100,000 Students!!