Python1 Min Read LetuscrackonJune 14, 2025 String Decryption – Character Position String Decryption – Character Position: The program must accept a string S (encrypted string) as the input. The encryption…
C Java Kickstart Python1 Min Read LetuscrackonMay 7, 2025 Character – Male or Female The program must accept a character.– If the character is m, print male– If the character is f, print female…
Python2 Min Read LetuscrackonApril 26, 2025 Character Matrix – Alternate Ends Character Matrix – Alternate Ends: The program must accept a character matrix of size RxC as the input. The program must print the…
Python1 Min Read LetuscrackonApril 19, 2025 Last Character – Last but one Last Character – Last but one: The program must accept a string S as the input. The program must print the characters from the…
Python1 Min Read LetuscrackonMarch 23, 2025 Game Name by Character Game Name by Character: The program must accept a character CH (Lowercase) as input and print as per the following conditions.If CH is a,…
Python1 Min Read LetuscrackonFebruary 13, 2025 Last and First Character Words Given a string S with spaces, the program must print only the words having it’s first letter same as the last letter of the previous…
Python1 Min Read LetuscrackonJanuary 22, 2025 Search String S2 in S1 Character Matrix Search String S2 in S1 Character Matrix: Given two strings S1 and S2, form a R*C matrix with the string S1 (You may repeat the string S1 to…
Python3 Min Read LetuscrackonJanuary 13, 2025 How to Find a Randomly Inserted Character in a String in Python In this article, we will discuss how to identify a random character inserted into a string by comparing the original string and the modified…
Python1 Min Read LetuscrackonNovember 5, 2024 Print String Till Character In Python A string S is passed as the input. Character C is also passed as the input. The program must print the string value S till C is encountered.…
C1 Min Read LetuscrackonJune 10, 2024 Character Between Two Vowels Given a string S, Print only the characters which are surrounded by vowels on both sides, if no character matches the condition print -1.…