Python1 Min Read LetuscrackonMay 11, 2026 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 LetuscrackonApril 27, 2026 Sort Integers in String The program must accept a string S which has only numbers and underscores as the input. The program must print only the integers…
Python1 Min Read LetuscrackonApril 23, 2026 String – Vowels Position Sum Accept a String S as the input. The program must print the sum of the positions of the vowels in S. If the string does not contain…
Python1 Min Read LetuscrackonApril 20, 2026 Reverse String Rank among SubStrings A string S is passed as the input. The program must generate the set (all unique) of all the substrings of S in the reverse order…
Python1 Min Read LetuscrackonApril 11, 2026 Pangram String A string S is passed as the input to the program. If S is a pangram, the program must print yes else it must print no. Uppercase and lower…
Python1 Min Read LetuscrackonApril 8, 2026 String Concatenation – Company Name & Location Two string values S1 and S2 are passed as input. The program must print the output as S1 Technologies S2. Input Format: The first line denotes…
Python1 Min Read LetuscrackonMarch 30, 2026 String Reverse Decryption Given an integer X and a string S (encrypted string) as input, the encryption algorithm is given below. – Iterate over all the divisors…
Python1 Min Read LetuscrackonMarch 29, 2026 String Rotation Odd and Even Positions A string S and two integers M and N are passed as input. The program must rotate the characters present in the odd positions of the string M…
Python1 Min Read LetuscrackonMarch 27, 2026 Interlaced String Given two strings S1 and S2 as input, the program must print the characters of the second string from the last interlaced with the characters…
C Python2 Min Read LetuscrackonMarch 14, 2026 Chars To Remove For Same String Value N string values S1, S2, S3, SN are passed as input to the program. Values of S1, S2, S3, SN are such that if one character is removed from…