by Masudur Rahman | Apr 9, 2024 | Array
Given a sorted array a[] of size n, delete all the duplicated elements from a[] & modify the array such that only distinct elements should be present there. Note:1. Don’t use set or HashMap to solve the problem.2....
by Masudur Rahman | May 29, 2023 | Array, Kadane's Algorithm
Kadane’s Algorithm is one of the simplest algorithm in computer programming.The problems of kadanes’s algorithm is frequently asked on coding interviews and various programming contests. This is the first post of the Kadane’s Algorithm series and I...