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...
by Masudur Rahman | Apr 29, 2023 | Arcade, CodeSignal Solutions
Problem Name : Add Problem Statement : Write a function that returns the sum of two numbers. Example For param1 = 1 and param2 = 2, the output should be solution(param1, param2) = 3. Editorial : This is the most easy problem off CodeSignal. You have to...
by Masudur Rahman | Dec 25, 2021 | Mathematical Problem
It is very easy to calculate small numbers which are divisible by Eleven, like 11, 22, 33, 121 and so on. But What about Large numbers? like 188452 or 31415 Yes, This is where we stuck.Let’s find A Number Divisible By 11 (Eleven) or Not Here comes the easy way...
by Masudur Rahman | Apr 3, 2020 | UVA (Online Judge)
Hey I’m Masudur Rahman Sourav. I’m studying in Mawlana Bhashani Science and Technology University at the Department of Information and Communication Technology. Currently I’m start solving UVA(Online Judge) problems and I found some very easy problem for you. You can...