C1 Min Read LetuscrackonMarch 12, 2025 Three Strings Three Strings: Given N string values, the program must print 3 string values as the output as described in the Example Input/Output section.…
Python1 Min Read LetuscrackonMarch 6, 2025 Two Strings – Swap Vowels Two Strings – Swap Vowels: The program must accept two string values S1 and S2 as the input. The program must swap vowels in the first…
C Python2 Min Read LetuscrackonJanuary 12, 2025 Four Strings Square Four Strings Square: Four strings all having the same length L are passed as the input to the program. The four strings must be printed in a…
Python1 Min Read LetuscrackonNovember 27, 2024 Python Program To Check Subsequence Of Two Strings The program must accept two string values S1 and S2 as the input. The program must print Found if S2 is a subsequence of S1. Else the program…
C1 Min Read LetuscrackonJune 12, 2024 Isolate Interlaced Strings Two string values S1 and S2 are interlaced and passed as a single input string S. Given L1 which is the length of S1, print S1 and S2 as the…
C1 Min Read LetuscrackonJune 11, 2024 Merge Strings Two strings S1 and S2 can be concatenated to form string S3. If certain characters of the first part of S2 matches with those…
C Java Python3 Min Read LetuscrackonJune 11, 2024 Common Alphabets N Strings N string values are passed as input to the program. Each string will contain only the alphabets a-z in lower case. A given alphabet may be…
Python2 Min Read LetuscrackonJune 11, 2024 Four Strings Rectangle Four strings out of which two have the same length L1 and the remaining two have the same length L2 are passed as the input to the program.…
C1 Min Read LetuscrackonJune 11, 2024 Print Strings for Number A number N is passed as the input to the program. Each digit in the number represents an alphabet (a for 1, b for 2 …) based on the…
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…