Python1 Min Read LetuscrackonJune 13, 2024 Max Distance Same Characters The program must accept a string S as the input. The program must print the character along with its maximum distance to reach the…
C Java Python2 Min Read LetuscrackonJune 12, 2024 Common Characters – Same Position The program must accept N string values are of equal length as the input. The program must print the common characters at the same position in…
Java Python1 Min Read LetuscrackonJune 11, 2024 String Characters Interlace Given an input string S, accept the input string S and print the string in the interlaced order as shown in the example…
Python1 Min Read LetuscrackonJune 11, 2024 Pattern Printing – String Characters Given a string S of length L, the program must print the pattern as described in the Example Input/Output. Input Format:First line contains…
Python1 Min Read LetuscrackonJune 11, 2024 N Strings – Largest Unique Characters N string values are passed as input to the program. The output is the string which has the largest count of unique characters. If multiple…
Python1 Min Read LetuscrackonJune 11, 2024 Reverse X to Y Position Characters A string S and two integers X and Y are passed as input. The program must print the characters in the string S from position X to position Y…
C Python1 Min Read LetuscrackonJune 11, 2024 Remove Duplicate Characters The program must accept a string S as the input. The program must remove the duplicate characters in the string S and then the…
C1 Min Read LetuscrackonJune 10, 2024 Characters at multiples of X Example Input/Output 1:Input:abcdexyzwqpoolj5 Output:eqj Explanation: The multiples of 5 are like 5, 10, 15,… So the characters in these…
C1 Min Read LetuscrackonJune 10, 2024 Even Position Characters in Reverse Order A string S is passed as input. The program must print the characters present at the even positions of the string in reverse order. Boundary…
C1 Min Read LetuscrackonJune 10, 2024 First N Common Characters Two string values S1, S2 are passed as the input. The program must print first N characters present in S1 which are also present in S2. Input…