top of page


Middle Value Overflow In Binary Search Explained
Binary search is one of the popular searching algorithms in computer science. If you have gone through the binary search algorithm, you may

Code Recipe
Dec 17, 20215 min read
1,796 views
0 comments


Linear Search: Searching Made Easy
Linear search finds the target element by comparing it with all the given elements in the input array, one by one.

Code Recipe
Dec 12, 20213 min read
356 views
0 comments


Singleton Pattern - All You Need To Know
Singleton Design Pattern is a creational design pattern. Singleton pattern lets you ensure that only one instance of a class (struct in go)

Code Recipe
Dec 11, 20215 min read
504 views
0 comments


Netflix System Design - A Complete Guide
Netflix System Design: System Design for a video streaming service like Netflix, amazon prime, Youtube.

Code Recipe
Dec 5, 202111 min read
1,942 views
0 comments


11. Container With Most Water - LeetCode Fastest Solution
Consider you are given n non-negative integers say a1, a2, ..., an, where each element in the array represents a point at coordinate (i, ai)

Code Recipe
Nov 30, 20214 min read
49,241 views
4 comments


Two Sum - Leetcode #1 Short & Simple Solution
Consider you given an array of integers and a target sum, return indices of two numbers in the array such that they add up to target.

Code Recipe
Nov 30, 20214 min read
378,941 views
25 comments
bottom of page