You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Basic data structure and algorithm online course taught in Python. This course is design to help you find job and do well in the interview.
21
-
<https://classroom.udacity.com/courses/ud513>
12
+
## Overall Mindset
13
+
Haveing a right mindset is the most important resource. It keeps you going when you are tired after work. Studying when everyone else are out having fun. Reminding you that your goals are not going to come easy, it takes time, self-discipline, mental and physical toughness...
14
+
15
+
This is a speech from Sean Lee on "How to Get a Job at the Big 4". I highly recommend this because it gives me the right mindset on how to put in the work.
16
+
<https://youtu.be/YJZCUhxNCv8>
17
+
18
+
CS DoJo on "How I Got a Job at Google as a Software Engineer". There are also lots of technique on coding interview in his channel.
This is a speech from Sean Lee on "How to Get a Job at the Big 4". I highly recommend this because it gives me the right mindset on how to put in the work.
30
-
<https://youtu.be/YJZCUhxNCv8>
26
+
## Data Structure and Algorithm Basics
27
+
Basic data structure and algorithm online course taught in Python. This course is design to help you find job and do well in the interview.
28
+
<https://classroom.udacity.com/courses/ud513>
31
29
32
-
CS DoJo on "How I Got a Job at Google as a Software Engineer". There are also lots of technique on coding interview in his channel.
* The output from the path which can be used by its parent.
5
+
* Only the node itself
6
+
* The node with its avaliable left branch
7
+
* The node with its avaliable right branch
8
+
9
+
* The output from the path which cannot (or won't) be used by its parent.
10
+
* Only the path from the left branch
11
+
* Only the path from the right branch
12
+
* The node with avaliable left branch and avaliable right branch at the same time
13
+
* The output of the first case. The means that even the path can be selected but we do not select it. Because selecting it will generate smaller output.
14
+
15
+
We initial all the value to be negative infinity, so the it will just be ignored by the `max()` if left or right node is `None`.
0 commit comments