Python1 Min Read LetuscrackonJanuary 22, 2025 Print Matrix – Diagonal Zig Zag Print Matrix – Diagonal Zig Zag: An R*C matrix is passed as the input to the program. The program must print the values in zig-zag order…
C Python1 Min Read LetuscrackonJanuary 16, 2025 Print Largest Even Number – Digits Print Largest Even Number – Digits: Given a number N as the input, print the largest even number E that can be formed using the digits…
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…
Python1 Min Read LetuscrackonDecember 6, 2024 Python Program To Print Number Frequency An array of N integers is passed as the input to the program. The program must modify the array such that each element in the array is…
Python1 Min Read LetuscrackonDecember 5, 2024 Print Prime Numbers from 2 to N Program In Python The program must accept an integer N as the input. The program must print all the prime numbers from 2 to N (inclusive of N) as…
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…
Python1 Min Read LetuscrackonNovember 12, 2024 Python Program to Print All Vowels Accept a string S as the input and print all the vowels in S as the output. If there is no vowel in S then the program must…
Python1 Min Read LetuscrackonNovember 12, 2024 Python Program To Print Fibonacci Sequence An integer value N is passed as the input. The program must print the first N terms in the Fibonacci sequence. Input Format:The first line…
Python1 Min Read LetuscrackonNovember 8, 2024 Print Only Alphabets In Python A string S is passed as the input. S can contain alphabets, numbers and special characters. The program must print only the alphabets in S.…
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.…