Python1 Min Read LetuscrackonJune 11, 2024 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 LetuscrackonJune 11, 2024 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 LetuscrackonJune 11, 2024 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 LetuscrackonJune 11, 2024 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 LetuscrackonJune 10, 2024 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 LetuscrackonJune 10, 2024 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 LetuscrackonJune 10, 2024 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…
C2 Min Read LetuscrackonJune 10, 2024 String Stairs Pattern The program must accept a string S containing only alphabets as the input. The program must print the string S…
C1 Min Read LetuscrackonJune 10, 2024 String Reverse First and Second Half A string is passed as input. The program must reverse the first and second half of the string and print it. Assume that the size of the string…
C1 Min Read LetuscrackonJune 10, 2024 Count Embedded Integers in String A string is passed as input. The program must print the count of integers present in the string. Boundary Condition(s):1 <= Length of…