Dynamic Programming Python LetuscrackonJanuary 25, 2026 Wildcard Pattern Matching The program must accept a text and a wildcard pattern as the input. The program must print “Matching” if…
C LetuscrackonJanuary 24, 2026 Pyramids and Patterns Here is a list of programs you will find in this page. Half pyramid of * Half pyramid of numbers Half pyramid of alphabets Inverted half…
C Dynamic Programming LetuscrackonJanuary 24, 2026 Largest Square Sub Matrix with 1s ExampleInput/Output 1:Input:7 51 1 1 0 11 1 0 1 00 1 1 1 11 1 1 1 11 1 1 1 11 1 1 1 10 0 0 0 0 Output:4
C Java Python LetuscrackonJanuary 23, 2026 Replace Max Digit – Two Integers The program must accept two integers X and Y as the input. The program must replace all the occurrences of the maximum digit in X with the…
C LetuscrackonJanuary 23, 2026 Characters at multiples of X Example Input/Output 1:Input:abcdexyzwqpoolj5 Output:eqj Explanation: The multiples of 5 are like 5, 10, 15,… So the characters in these…
C Java Python TCS CodeVita LetuscrackonJanuary 22, 2026 kth largest factor of N – TCS CodeVita A positive integer d is said to be a factor of another positive integer N if when N is divided by d, the remainder obtained is zero. For…
Dynamic Programming Java LetuscrackonJanuary 22, 2026 Minimum Edit Distance Two Strings The program must accept two string values S1 and S2 as the input.The program must print the minimum cost required to convert the string S1 to…
Dynamic Programming Java LetuscrackonJanuary 21, 2026 Intelligent Chef There are N persons in a hotel. Each person has their own preferences for food.The hotel chef wants to prepare the food items as minimum as…
Python LetuscrackonJanuary 21, 2026 Nested Triangle Pattern The program must accept an integer N as the input. The program must print a triangle based on the following conditions.– The triangle…
Dynamic Programming Java LetuscrackonJanuary 20, 2026 Vendor Maximum Profit A vendor has a shop and he wants to purchase some items for a maximum of N rupees.There are K items in a wholesale store that the vendor is…