Arnab Chakraborty has Published 4452 Articles

Program to check whether given words are maintaining given pattern or not in C++

Arnab Chakraborty

Arnab Chakraborty

Updated on 22-Dec-2020 08:26:07

373 Views

Suppose we have a pattern p and a string str, we have to check whether str follows the same pattern or not. Here follow means there is a bijection between a letter in pattern and a non-empty word in str.So, if the input is like pattern = "cbbc", str = ... Read More

Program to find size of each partition of a list where each letter appears at most one piece in Python

Arnab Chakraborty

Arnab Chakraborty

Updated on 22-Dec-2020 08:24:27

132 Views

Suppose we have a lowercase string s, we can partition s into as many pieces as possible such that each letter appears in at most one piece and find the sizes of the partitions as a list.So, if the input is like s = "momoplaykae", then the output will be ... Read More

Program to count number of paths with cost k from start to end point in Python

Arnab Chakraborty

Arnab Chakraborty

Updated on 22-Dec-2020 08:22:21

222 Views

Suppose we have a 2d binary matrix and another value k. Now starting from the top-left cell, we have to go to the bottom right cell. In one step, we can only go down, or right. Now the score of a path is the sum of the values on the ... Read More

Program to find minimum cost to paint fences with k different colors in Python

Arnab Chakraborty

Arnab Chakraborty

Updated on 22-Dec-2020 08:20:48

246 Views

Suppose we want to paint a row of N fences with K different colors. We want to minimize the cost while ensuring that no two neighboring fences are of the same color. So if we have an N x K matrix where the nth row and kth column represents the ... Read More

Program to find maximum number of package that can be bought by buyers in C++

Arnab Chakraborty

Arnab Chakraborty

Updated on 22-Dec-2020 08:18:29

160 Views

Suppose we have two lists sales and buyers. Each element in sales contains two values in the form [day, price] this indicates the package is available for sale only on that day for that given price. And each element in buyers in the form [payday, amount] indicates that the buyer ... Read More

Program to get maximum value of power of a list by rearranging elements in Python

Arnab Chakraborty

Arnab Chakraborty

Updated on 22-Dec-2020 06:44:36

592 Views

Suppose we have a list nums of N positive numbers. Now we can select any single value from the list, and move (not swap) it to any position. We can also not move any to position at all. So we have to find what is the maximum possible final power ... Read More

Program to find length of longest increasing subsequence with at least k odd values in Python

Arnab Chakraborty

Arnab Chakraborty

Updated on 22-Dec-2020 06:40:36

181 Views

Suppose we have a list of numbers called nums and another value k, we have to find the size of the longest increasing subsequence with at least k odd elements.So, if the input is like nums = [12, 14, 16, 5, 7, 8] k = 2, then the output will ... Read More

Program to find number of operations needed to decrease n to 0 in C++

Arnab Chakraborty

Arnab Chakraborty

Updated on 22-Dec-2020 06:38:57

142 Views

Suppose we have a number n. Now consider an operation where we can either 1. Decrement n by one 2. If n is even number, then decrement it by n / 2 3. If n is divisible by 3, then decrement by 2 * (n / 3) Finally find the ... Read More

Program to get next integer permutation of a number in C++

Arnab Chakraborty

Arnab Chakraborty

Updated on 22-Dec-2020 06:36:12

326 Views

Suppose we have a number n, we have to find the next bigger permutation of its digits. When n is already in its largest permutation, then rotate it down to the smallest permutation.So, if the input is like n = 319, then the output will be 391.To solve this, we ... Read More

Program to check whether we can get N queens solution or not in Python

Arnab Chakraborty

Arnab Chakraborty

Updated on 22-Dec-2020 06:32:49

158 Views

Suppose we have a binary matrix where 0 is representing empty cell and 1 is representing a chess queen at that cell. We have to check whether we can fill this board and get a valid nqueen solution or not. As we know the n queens puzzle asks to place ... Read More

Advertisements