Arnab Chakraborty has Published 4293 Articles

C++ program to demonstrate function of macros

Arnab Chakraborty

Arnab Chakraborty

Updated on 12-Oct-2021 13:48:40

478 Views

Suppose we are given a integer array that contains several integer values. We have to find out the difference between the smallest value and the largest value in the array. To solve this problem, we have to use macros. The inputs are taken from stdin, and the result is printed ... Read More

Program to generate Pascal's triangle in Python

Arnab Chakraborty

Arnab Chakraborty

Updated on 12-Oct-2021 13:28:50

15K+ Views

Suppose we have a number n. We have to generate Pascal's triangle up to n lines. The Pascal's triangle will be look like this −The property of Pascal's triangle is the sum of each adjacent two numbers of previous row is the value of the number which is placed just ... Read More

Program to check a number is palindrome or not without help of a string in Python

Arnab Chakraborty

Arnab Chakraborty

Updated on 12-Oct-2021 11:33:02

11K+ Views

Suppose we have a non-negative integer called num, we have to check whether it is a palindrome or not. We have to solve it without using stringsSo, if the input is like num = 25352, then the output will be TrueTo solve this, we will follow these steps −a := ... Read More

Program to count indices pairs for which elements sum is power of 2 in Python

Arnab Chakraborty

Arnab Chakraborty

Updated on 12-Oct-2021 11:31:22

332 Views

Suppose we have a list of numbers called nums. We have to find the number of index pairs i, j, where i < j such that nums[i] + nums[j] is equal to 2^k for some 0 >= k.So, if the input is like nums = [1, 2, 6, 3, 5], ... Read More

Program to check we can get a digit pair and any number of digit triplets or not in Python

Arnab Chakraborty

Arnab Chakraborty

Updated on 12-Oct-2021 11:28:59

270 Views

Suppose we have a numeric string s. We have to check whether there is some arrangement where we can have one pair of the same character and the rest of the string form any number of triplets of the same characters.So, if the input is like s = "21133123", then ... Read More

Program to check string is palindrome with lowercase characters or not in Python

Arnab Chakraborty

Arnab Chakraborty

Updated on 12-Oct-2021 11:27:36

827 Views

Suppose we have alphanumeric string s. It can hold both uppercase or lowercase letters. We have to check whether s is a palindrome or not considering only the lowercase alphabet characters.So, if the input is like s = "rLacHEec0a2r8", then the output will be True because the string contains "racecar" ... Read More

Program to find mutual followers from a relations list in Python

Arnab Chakraborty

Arnab Chakraborty

Updated on 12-Oct-2021 11:25:54

200 Views

Suppose we have a list called relations. Where each element in relations list relations[i] contains two numbers [ai, bi] it indicates person ai is following bi on a social media platform. We have to find the list of people who follow someone and they follow them back, we have to ... Read More

Program to find minimum number of monotonous string groups in Python

Arnab Chakraborty

Arnab Chakraborty

Updated on 12-Oct-2021 11:23:33

363 Views

Suppose we have a lowercase string s. We have to find the minimum numbers of contiguous substrings in which s is divided into parts such that each substring is either non-increasing or non-decreasing. So for example, if the string is like "pqqqr" is a non-decreasing string, and "qqqp" is a ... Read More

Program to find minimum value to insert at beginning for all positive prefix sums in Python

Arnab Chakraborty

Arnab Chakraborty

Updated on 12-Oct-2021 11:20:21

226 Views

Suppose we have a list of numbers called nums. We have to find the minimum positive value that we can insert at the beginning of nums so that that prefix sums of the resulting list contains numbers that are all larger than 0.So, if the input is like nums = ... Read More

Program to find minimum distance of two given words in a text in Python

Arnab Chakraborty

Arnab Chakraborty

Updated on 12-Oct-2021 11:18:51

2K+ Views

Suppose we have three strings text, w1, and w2. The text is a sentence with different words. We have to find the smallest distance between any two occurrences of w1 and w2 in the text, the distance is measured in number of words in between them. If either w1 or ... Read More

Advertisements