Python1 Min Read LetuscrackonDecember 15, 2024 S1 Contains S2 In Python S1 Contains S2 In Python: Given two string values S1 and S2, the program must print YES if the characters of S2 occurs in the same order of…
Python1 Min Read LetuscrackonDecember 13, 2024 Top-left to Bottom-Right Diagonals Program In Python The program must accept an integer matrix of size RxC as the input. The program must print the integers in the top-left to bottom-right…
Python2 Min Read LetuscrackonDecember 12, 2024 Product of Matrix and it's Transpose Program In Python The program must accept two positive integers M and N as the input. The program must generate a 4×4 integer…
Python1 Min Read LetuscrackonDecember 8, 2024 Triangle Count from Array Program In Python An array of N integers is passed as the input to the program. The program must print the count of triangles that can be formed with the given…
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 Balanced Parentheses Program in Python The program must accept a series of Parentheses as a string. The program must print Valid if the parentheses are balanced. Else the program…
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 LetuscrackonDecember 4, 2024 Diffuse Bomb Program In Python Arun is a bomb squad officer. He needs to diffuse the bomb in a college. To disarm the bomb he needs to cut some cables in specific order.…
Python1 Min Read LetuscrackonDecember 2, 2024 Right Arrow Pattern Program In Python The program must accept an odd integer N as the input. The program must print the N lines containing hyphens and asterisks based on…
Python1 Min Read LetuscrackonDecember 1, 2024 K Palindromic Integers Program In Python The program must accept two integers N and K as the input. The program must print the first K palindromic integers greater…