Python1 Min Read LetuscrackonJune 11, 2024 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 LetuscrackonJune 11, 2024 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 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…