C1 Min Read LetuscrackonJuly 1, 2026 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 9, 2026 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 5, 2026 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 LetuscrackonMay 18, 2026 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 LetuscrackonMay 12, 2026 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 LetuscrackonApril 27, 2026 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 LetuscrackonApril 7, 2026 Sort N Strings – Descending Order N strings are passed as input. The program must sort them in the descending order. Input Format: The first line contains the value of N. Next…
Dynamic Programming Java1 Min Read LetuscrackonJanuary 22, 2026 Minimum Edit Distance Two Strings The program must accept two string values S1 and S2 as the input.The program must print the minimum cost required to convert the string S1 to…
Java1 Min Read LetuscrackonJanuary 11, 2026 Two Strings – L Joint Given two strings S1 and S2, where the last letter of one of the strings is same as the first letter of the other string, print the output as…
Python1 Min Read LetuscrackonJanuary 9, 2026 Isomorphic Strings Given two strings S1 and S2, the program must print if they are isomorphic or not. Two strings are isomorphic if the characters in S1 can be…