Posts by Category

Academic

Transfer from De Anza To Georgia Tech 🐝

11 minute read

Published:

In February 2023, the president of ACM Club at De Anza College invited me to speak at an out-of-state university transfer panel. There were many amazing panelists, but too little time for us to share everything. So I decided to put my thoughts and experiences here 🙂

CS

Internalizing Python bisect_right() and bisect_left()

6 minute read

Published:

Binary search is a popular topic in coding interviews. I was struggling with finding the right template for implementing binary search as it’s annoying to get the equal sign or less than equal sign correctly in the right place. Eventually I decided to use a template similar to bisect_right() and bisect_left() in Python bisect library.