Blogs

Kadane's Algorithm in …

Subarray problems are a common and important part of computer science and software engineering. One such problem is finding the maximum sum subarray in a given input array. Kadane’s Algorithm is a well-known solution to this problem and is widely used in industry and academia. In this article, …

Custom Array Class using …

Creating a custom array class in C++ can be a useful way to add additional functionality or constraints to the built-in array type. In this blog post, we will go over the steps to create a simple custom array class that can store integers and has a fixed size. 1- Define the class First, we will …

Setup a C++ Project using …

Setting up a C++ project using Premake can be a bit tricky, but once you understand the basics, it’s a quick and easy process. In this blog post, we’ll go over the steps you need to take to create a new C++ project using Premake. 1- Install Premake The first thing you need to do is …