C LetuscrackonMarch 16, 2026 Complete Cell State After D Days There is a colony of 8 cells arranged in a straight line where each day every cell competes with its adjacent cells(neighbours). Each day, for…
C LetuscrackonMarch 15, 2026 Find the lowest average temperature for N days The temperature recorded in a city in a week will be passed as input. The program must print the lowest average temperature for any 3…
Python LetuscrackonMarch 15, 2026 Difference between a number and it's reverse The number N is passed as input. The program must print the difference between the number N and it’s reverse R. Input Format:The first…
C Python LetuscrackonMarch 14, 2026 Chars To Remove For Same String Value N string values S1, S2, S3, SN are passed as input to the program. Values of S1, S2, S3, SN are such that if one character is removed from…
C Hephzibai EnstinonMarch 14, 2026 Height Pattern Printing The height of N cats is passed as the input. The program must print the height of the cats graphically as a column chart represented by #and-…
C Hephzibai EnstinonMarch 13, 2026 Alphabet Triangle Pattern The program must accept an alphabet CH as the input. The program must print the desired pattern as shown in the Example Input/Output section.…
Python LetuscrackonMarch 13, 2026 Milk Man and His Bottles A milkman serves milk in packaged bottles of varied sizes. The possible size of the bottles are {1, 5, 7 and 10} litres. He wants to supply…
Python LetuscrackonMarch 12, 2026 Diagonal Sum A set of numbers forming a matrix N*N is passed as input. The program has to print the sum of numbers along the diagonals. Input Format: The…
C LetuscrackonMarch 12, 2026 Find numbers such that A*B = C*D A set of numbers (atleast 4 numbers) will be passed as input. The program must find four numbers A,B,C,D such that A*B = C*D and print the…
Python LetuscrackonMarch 11, 2026 Largest & Smallest Digits Difference A number N is passed as the input. The program must print the difference between the largest and the smallest digits in the number. Input…