C Python1 Min Read LetuscrackonJune 8, 2024 String – Non Repeated Characters The program must accept a string S as the input. The program must print all the non-repeated characters in the string S in the order of their…
C1 Min Read LetuscrackonJune 8, 2024 String Modification The program must accept a string S as the input. The program must remove all the vowels and insert a character “.” before each…
C1 Min Read LetuscrackonJune 8, 2024 Same Case N String The program must accept N string values of equal size as the input. The program must print the count of position of the string where all the…
Python1 Min Read LetuscrackonJune 7, 2024 Expand String based on Frequency In a string compression technique, a string can be compressed based on the following condition.– If a character occurs…
C Python1 Min Read LetuscrackonJune 7, 2024 At least 1 Vowel – N String Values The program must accept N string values as the input. The program must print yes if all the N string values contain at least 1 vowel. Else the…
C Java Python1 Min Read LetuscrackonJune 7, 2024 Trim String to Shorter Length The program must accept two string values S1 and S2 containing only lower case alphabets as the input. The program must trim the longer string…
Python1 Min Read LetuscrackonJune 7, 2024 Super Binary String The program must accept a string S containing only 0s and 1s as the input. The program must print Yes if the…
C Python1 Min Read LetuscrackonJune 7, 2024 String Contains X and Y The program must accept a string S as the input. The program must print yes if the string contains only the characters ‘X’ and…
C Java Python1 Min Read LetuscrackonJune 7, 2024 Sort String Values – First and Last The program must accept N string values and sort them. Then the program must print the first and the last string values. Input : 5 lion tiger…
Python1 Min Read LetuscrackonJune 7, 2024 Expand String – K Characters The program must accept three integers X, Y and K as the input. The program must form a string with lower case…