C1 Min Read LetuscrackonFebruary 17, 2025 Toggle Consonants Adjacent to Vowels The program must accept a string S containing only alphabets both in lower and upper case. The program must toggle the case of the consonants…
Python3 Min Read LetuscrackonJanuary 13, 2025 Toggle Bit to Check Multiple of 5 in Binary Representation This article explains a Python program that checks whether a binary number can be converted to a multiple of 5 by toggling exactly one bit in…
C Java Python1 Min Read LetuscrackonJune 12, 2024 Toggle Case – Reversal The program must accept a string S containing only alphabets and an integer X as the input. The program must toggle the case of the first X…
Python1 Min Read LetuscrackonJune 9, 2024 Toggle Case Simon wishes to convert lower case alphabets to upper case and vice versa. Help Simon by writing a program which will accept a string value S…
Python1 Min Read LetuscrackonJune 7, 2024 Toggle – Digits and Words The program must accept a string S which contains digits as integer values and words. The program must toggle the digits to words and words to…
Python1 Min Read LetuscrackonJune 6, 2024 Toggle Format – List of Integers Toggle Format – List of Integers: The program must accept a list of integers as the input. The program must print the output based on…
Python1 Min Read LetuscrackonJune 5, 2024 Toggle case (String) Toggle case: Given a String S as input, the program must toggle the case of each alphabet. Boundary Condition(s):1 <= Length of S <= 100…