Given string str, the task is to find the frequency of all digits (0-9) in a string created by concatenating the ASCII values of each… Read More
Tag Archives: ASCII
Given a string str of N characters, the task is to find the lexicographically smallest string that can be formed by concatenating any prefix and… Read More
Given an integer X and two strings S1 and S2, the task is to check that string S1 can be converted to the string S2… Read More
Given an integer X and two strings S1 and S2, the task is to check that string S1 can be converted to the string S2… Read More
Given an integer X and two strings S1 and S2, the task is to check that string S1 can be converted to the string S2… Read More
Given string S of size N, the task is to find the sum of the alphabet value of each character in the given string. Examples:… Read More
Given two strings S[] and N[] of the same size, the task is to update string S[] by adding the digit of string N[] of… Read More
Given an integer X and two strings S1 and S2, the task is to check that string S1 can be converted to the string S2… Read More
Given a binary string str, the task is to find its equivalent ASCII character string. Examples: Input: str = “0110000101100010”Output: abExplanation: Dividing str into set of 8… Read More
Given a string S of size N, the task is to sort the string based on their ASCII values. Examples: Input: S = “Geeks7”Output: 7GeeksExplanation:… Read More
Given two strings str1 of size N and str2 of size M.The task is to find if it is possible to compose str2 by using… Read More
Given a string S, the task is to count the number of camel case characters present in the given string. The camel case character is… Read More
Given an array arr[] consisting of N strings, the task is to sort the strings in increasing order of the sum of ASCII value of… Read More
Given an array arr[] of size N containing strings, the task is to count the number of strings having sum of ASCII values of characters… Read More