Recent Posts

Implementing prefix trie

4 minute read

Introduction: A prefix trie is a tree data structure that stores strings that is prefix searchable. The nodes of the tree are actually the elements of the a...

Implementing binary heap

5 minute read

Overview A binary heap is a complete binary tree that satisfies the heap property. There are two main ways to represent binary heaps: Array representati...

Introducing observability with prometheus

2 minute read

Using open source observability tools like prometheus, it is convenient to track and understand how your application performs, especially if cloud providers ...