Python1 Min Read LetuscrackonApril 19, 2025 Reverse Sum Palindrome Reverse Sum Palindrome: The program must accept an integer N as the input. The program must find the sum of N and its reverse. The…
Python1 Min Read LetuscrackonFebruary 11, 2025 Reverse Asterisk Triangle Pattern Reverse Asterisk Triangle Pattern: The program must accept an integer N as input and print the pattern as given in the Example Input/Output…
C Python1 Min Read LetuscrackonFebruary 5, 2025 Reverse the Substrings Between Underscores Reverse the Substrings Between Underscores: String S is passed as the input. The String S may have zero or more…
C Python1 Min Read LetuscrackonJanuary 14, 2025 Pattern Printing – Till N & Reverse Problem Statement Write a program that accepts an integer N and prints a total of 2N lines, following the pattern shown in the examples below.…
Python3 Min Read LetuscrackonJanuary 14, 2025 Reverse and Print Common Characters in Two Strings Using Python This article focuses on a Python program to find common characters between two strings after reversing the second string. It is an efficient…
InfyTQ Python1 Min Read LetuscrackonDecember 7, 2024 Sum and Reverse Till Palindrome The program must accept an integer N as the input. The program must find the palindrome formed by performing the following operations.–…
Python1 Min Read LetuscrackonDecember 6, 2024 Sum of Matrices – Reverse Rows The program must accept two integer matrices M1 and M2 are of equal size RxC as the input. In M1 and M2, The program must reverse the integers…
Python1 Min Read LetuscrackonNovember 18, 2024 Reverse Order – Print multiples of X from N to M Two numbers M and N are passed as the input. A number X is also passed as the input. The program must print the numbers divisible by X from N…
Java1 Min Read LetuscrackonNovember 1, 2024 Move M Words – End Reverse The program must accept a string S which contains N words and move the first M words to the last in the reverse order. Input format:The first…
Python1 Min Read LetuscrackonOctober 31, 2024 Reverse Number Number N is passed as the input. The program must reverse the number and print the reversed number as the output. Input Format:The first line…