Found 7420 Articles for Java

Longest Substring of A that can be changed to Substring of B in at most T cost

Shubham Vora
Updated on 23-Oct-2023 14:34:21

213 Views

In this problem, we will find the longest substring of A to convert it to a substring of B starting from the same index in less than T cost. We will use the binary search algorithm to find the maximum length of the substring which follows the given condition. However, the naïve approach to solving the problem is to find all substrings following the conditions in the problem statement and take the substring with maximum length. Problem statement − We have given a string A and B of length N. Also, we have given a total cost, ‘T’. The ... Read More

Find two unique Palindrome Strings using given String characters

Shubham Vora
Updated on 20-Oct-2023 15:00:47

149 Views

In this problem, we will construct two palindromic strings using the given string’s characters. We can use the character’s frequency to solve the problem. We can construct two new palindromic strings only if both characters’ frequencies are even or if any characters have an even frequency and others have an odd frequency. Problem statement − We have given a string alpha containing two different characters and a size equal to N. We need to construct two palindromic strings using the characters of the alpha, which are not the same as the given string alpha. Sample Examples After incrementing each character ... Read More

Count ways to select three indices from Binary String with different adjacent digits

Shubham Vora
Updated on 16-Oct-2023 17:35:07

196 Views

In this problem, we will find the number of pairs of 3 indices so that any adjacent indices don’t have the same value in the pair. We can get the output by checking each pair of 3 indexes, but it can be more time-consuming. Another approach to solving the problem is to take the current index and also take the index from left and right, which doesn’t contain a similar value to the current index's value. This way, we can count the total number of pairs each index can form and sum them to get the output. Problem statement − ... Read More

Count even indices of String whose prefix has prime number of distinct Characters

Shubham Vora
Updated on 16-Oct-2023 16:57:47

144 Views

In this problem, we will find total invalid characters in the given string. If total distinct characters till the particular even index is prime, we can say the character is invalid. We can use the map data structure to count the total number of distinct characters while traversing the string. Also, we can use the string of characters to keep track of the distinct digits. Also, for every character, we can check whether its index is even and whether distinct characters are prime. Problem statement – We have given a string alpha containing the N characters. We need to find ... Read More

Check if String can be divided into two Subsequences so that product of sum is odd

Shubham Vora
Updated on 16-Oct-2023 15:25:08

136 Views

In this problem, we will check if it is possible to divide the given numeric string into two disjoint subsequences such that sum(sub1) * sum(sub2) becomes odd. We need to divide the string into two subsequences such that the sum of the digits of both becomes odd to get the odd multiplication result. Problem statement − We have given a string num_string containing the numeric characters. We need to check whether we can divide the string into two subsequences such that the multiplication of the sum of both subsequences becomes odd. Also, it is given that every character of the ... Read More

Frequency Measuring Techniques for Competitive Programming

Avinash Gupta
Updated on 28-Aug-2023 18:17:21

242 Views

In this article, we are going to find the different ways to find the frequency of numbers present in an array []. These methods are very useful in doing competitive programming for different problems for different cases. Sometimes, calculating the frequency of elements whether it is numbers or alphabets presented in the array is a complicated task. Various algorithms like Searching, array, divide and conquer can be used to find the repeated elements defined in the array. Note- Take an integer array. Let's explore the article, to know how it can be solved by using Java programming ... Read More

Smallest string divisible by two given Strings

Vanshika Sood
Updated on 27-Oct-2023 16:00:53

1K+ Views

The objective of this article is to determine the smallest string that is a multiple of both given strings. An interesting observation to note is that for two given strings s and t, the string s is a multiple of t if and only if s can be formed by repeating t one or more times. We have to find the smallest such string. Problem Statement Given two non-empty strings, s1 and s2, with lengths n and m respectively, the objective is to determine the smallest string that is a multiple of both s1 and s2. A ... Read More

How to Print Colored Text in Java Console?

Adeeba Khan
Updated on 25-Aug-2023 17:26:18

19K+ Views

When dealing with Java terminal apps, individuals may frequently want to print colored text to improve the output's aesthetic appeal and readability. ANSI escape codes can be used to generate colored text instead of the monochrome output that Java's default terminal generally produces. When printed to the console, ANSI escape codes are unique sets of characters that alter the text's appearance by altering its color, style, or background. In this article, we'll look at how to print colored text in the Java console using ANSI escape codes. We'll go over two examples, one with colored text only and the other ... Read More

How to Print an Array in Java Without using Loop?

Adeeba Khan
Updated on 25-Aug-2023 17:24:35

3K+ Views

The task of printing an array's elements in Java is one that programmers come upon regularly. Having a simple and effective technique for printing arrays is crucial, whether you want to display the array contents for debugging purposes, present them to the user in a prepared manner, or analyze the data within the array. While utilizing a loop is the most common and conventional strategy, there may be times when you need to look into other options to do the same objective. To provide you with a new viewpoint on how to handle array printing chores, this article seeks to ... Read More

How to Print all Keys of the LinkedHashMap in Java?

Adeeba Khan
Updated on 25-Aug-2023 17:22:17

2K+ Views

Java's LinkedHashMap data structure combines the strengths of a HashMap as well as of a doubly-linked list. It is one of the better options for situations requiring predictable iteration as it not only offers key-value mapping like a HashMap but also preserves the insertion order of components. There are times when we need to print every key found in a LinkedHashMap for multiple reasons, that include debugging, analysis and information display to users. In this post, we will examine two excellent techniques that let us print every key from a LinkedHashMap in Java, enabling us to effectively extract and visualize ... Read More

Advertisements