Skip to content
HomeAboutProjectBlogSnippets

Code Snippets

Here are a selection of code snippets. The collection includes snippets that I occasionally use, snippets that I thought were wonderful, and snippets that I am very pleased of.

Binary Search

Binary Search

This is a searching algorithm performed on sorted arrays. As it divides the entire array into half in every iteration, the runtime is O(logn).

Hash Map

Hash Map

I found hash map to be the most useful data structure when it comes to solving a problem very efficiently.

Layout Animation

Layout Animation

This feature of React Native automatically animates views to their new positions when the next layout happens

Tooltip

Tooltip

Tooltip is a very interesting feature to me. I used it quite a lot of times.


HomeAbout
LinkedInGitHub
BlogProjectSnippets