Python1 Min Read LetuscrackonApril 23, 2026 String – Vowels Position Sum Accept a String S as the input. The program must print the sum of the positions of the vowels in S. If the string does not contain…
C1 Min Read LetuscrackonApril 21, 2026 Traverse Square Matrix – Spiral Clockwise A square matrix of size N*N is provided. The program must traverse the matrix spirally and print the elements in a single line. Input…
Python1 Min Read LetuscrackonApril 19, 2026 Football Player – Total Dribble Paths A football coach wants his team to improve their dribbling skills. So he sets up a R * C grid, where R is the number of rows and C is the…
Python1 Min Read LetuscrackonApril 16, 2026 X to Z Ascending – Y to X Descending Three positive integers X, Y and Z are passed as the input to the program. The program must print from X to Z in the forward direction and…
Python1 Min Read LetuscrackonApril 15, 2026 Top Ranking Student – Maths Physics Chemistry The program must accept the marks scored by N students in Maths, Physics and Chemistry and print the name of the single top ranking student.…
Python1 Min Read LetuscrackonApril 15, 2026 Float Sum – Concatenation The program must accept N integers (where N is always even) as the input. The program must form N/2 float values by…
Python1 Min Read LetuscrackonApril 11, 2026 Odd Even Row – Pattern Printing Given a value of N, where N is the number of rows, the program must print the character ‘*’ from left or right depending on…
C Java1 Min Read LetuscrackonApril 10, 2026 Shirt – Matching Pairs A shop to increase sales during a festival has an offer that a customer will get a discount if the customer buys shirts having same size in…
Python1 Min Read LetuscrackonApril 7, 2026 Sort N Strings – Descending Order N strings are passed as input. The program must sort them in the descending order. Input Format: The first line contains the value of N. Next…
Python1 Min Read LetuscrackonApril 7, 2026 1 to N – Forward and Reverse Interlaced The program must accept a number N and print the numbers from 1 to N in both forward and reverse direction interlaced with each otherINPUT…