Posts by Tags

AI

Algorithm

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.

C++

College

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 ๐Ÿ™‚

LLM

Life

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 ๐Ÿ™‚

ML System

Python

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.