Circular Queue Data StructureWe learned linear queue or simple queue last time, now its time to learn circular queue which will fix main issues with the linear queue. We will be able to reuse the empty space for more items. Here is a quick look at it: The way it works is simple...Apr 22, 2025·5 min read
Laravel Rule Groups - DRYLaravel provides a very powerful and convenient way to validate incoming requests. All you need to do is define a bunch of rules for each field that you are expecting on the end point. For example, [ 'title' => 'required|unique:posts|max:255', 'b...Jan 9, 2024·6 min read
Array Data StructureWhat is an Array? An array is just a collection of variables stored at contiguous locations in the memory. Explanation It is the simplest data structure in which we store data as a collection in memory and then the data can be read from anywhere in t...Dec 6, 2023·2 min read
Introduction to DSAIn this series, we will go through all of the concept related to Data Structures and Algorithms. We will use the most loved programming language C++ to implement all these concepts so let's dive in! Note this course assumes you have a little knowled...Dec 5, 2023·4 min read