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…
Python1 Min Read LetuscrackonMarch 3, 2026 String Palindrome A string S is passed as input to the program. The program must print “yes” if the string S is a palindrome and must print…
Python1 Min Read LetuscrackonFebruary 28, 2026 Replace Border with String The program must accept a character matrix of size RxC and a string S as the input. The program must replace the characters in the border of…
Python1 Min Read LetuscrackonFebruary 27, 2026 String Reverse A string S is passed as input to the program. The program must reverse the string and print the reversed value. Input Format:The first line…