Code RecipeJun 7, 202217 minURL Shortener (Tiny URL) System Design: A Complete GuideA URL shortner is a service which takes a long URL and converts it into an equivalent short URL containing lesser characters. When the user
Code RecipeJun 2, 202213 minGo Generics - Everything You Need To KnowGenerics is a programming language paradigm that gives us a way to write code that is not tied to any specific type. It gives us the ability
Code RecipeFeb 19, 20224 minReverse A Singly Linked List - Everything You Need To KnowWrite an algorithm to reverse the given singly linked list. You can use the properties of a stack...
Code RecipeFeb 13, 20224 minFinding The Middle Element - Singly Linked ListGiven a singly linked list, find the middle element in it. If there are even number of nodes in the given linked list then return the
Code RecipeFeb 12, 20227 minSingly Linked List - Everything You Need To KnowLinked list is a linear data structure. Each element in a linked list is an individual object. These individual objects are called nodes.