Dynamic Programming Java LetuscrackonMay 18, 2026 Selling Wine Bottles There are N wine bottles packed and arranged in a row from left to right. The wine bottles can be sold only one per year with a…
Python LetuscrackonMay 18, 2026 Four Strings Rectangle Four strings out of which two have the same length L1 and the remaining two have the same length L2 are passed as the input to the program.…
C LetuscrackonMay 17, 2026 Bomb Blast Survivors An N*N grid is passed as input to the program. There are bombs planted in the grid. Each bomb is detonated and destroys all the blocks in its…
Python LetuscrackonMay 17, 2026 Split String & Sort An even length string S is passed as the input. The program must split the string into two parts S1 and S2 and sort them in ascending order.…
LetuscrackonMay 16, 2026 SQL – Students with Total Marks More Than 50 student is a database table containing student details whose create DDL is given below. marks is a database table containing the total marks…
Java LetuscrackonMay 16, 2026 JAVA – MultiThreading – Printer The class Hello.java is given below. Please write the code for the class Printer.java so that the program prints 1 for N…
LetuscrackonMay 15, 2026 SQL – Employee Name Search employee is a database table containing employee details whose create DDL is given below. Write the SQL to list the name and designation of…
C Python LetuscrackonMay 15, 2026 Two Digits Numbers Sum Accept an array of N values and print the sum S of all the two digit numbers present in the array. If there are no two digit numbers, print…
Dynamic Programming Python LetuscrackonMay 14, 2026 DP – Maximum Sum Subarray An array of N integers (both positive and negative) is given as the input to the program. The program must print the maximum sum of the…
C Python LetuscrackonMay 14, 2026 Date Format The program must accept a date as the input. The program must print the date in the mentioned format as shown in the Example Input/Output…